diff options
author | Daan Leijen <daan@microsoft.com> | 2022-04-08 16:37:08 -0700 |
---|---|---|
committer | Daan Leijen <daan@microsoft.com> | 2022-04-08 16:37:08 -0700 |
commit | 5c7ada4b202a196dcc8c2456bc57a526534f84a5 (patch) | |
tree | 152f6401f9c75c571f35ddd238518e9cd40d1723 /docs/using.html | |
parent | 185f296513da2bfcdb413f7c4821bf238c35e035 (diff) | |
parent | 674ee63fa741449d348b277eef6d06c268c6f925 (diff) |
Merge branch 'dev' of https://github.com/microsoft/mimalloc into dev
Diffstat (limited to 'docs/using.html')
-rw-r--r-- | docs/using.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/using.html b/docs/using.html index e6aad1a..140f0c5 100644 --- a/docs/using.html +++ b/docs/using.html @@ -105,7 +105,7 @@ $(document).ready(function(){initNavTree('using.html',''); initResizable(); }); </div><!-- fragment --><p> to link with the shared (dynamic) library, or: </p><div class="fragment"><div class="line">target_link_libraries(myapp PUBLIC mimalloc-<span class="keyword">static</span>)</div> </div><!-- fragment --><p> to link with the static library. See <code>test\CMakeLists.txt</code> for an example.</p> <h3>C++</h3> -<p>For best performance in C++ programs, it is also recommended to override the global <code>new</code> and <code>delete</code> operators. For convience, mimalloc provides <a href="https://github.com/microsoft/mimalloc/blob/master/include/mimalloc-new-delete.h"><code>mimalloc-new-delete.h</code></a> which does this for you – just include it in a single(!) source file in your project.</p> +<p>For best performance in C++ programs, it is also recommended to override the global <code>new</code> and <code>delete</code> operators. For convience, mimalloc provides <a href="https://github.com/microsoft/mimalloc/blob/master/include/mimalloc-new-delete.h"><code>mimalloc-new-delete.h</code></a> which does this for you – just include it in a single(!) source file in your project without linking to the mimalloc's library.</p> <p>In C++, mimalloc also provides the <code><a class="el" href="group__cpp.html#structmi__stl__allocator" title="std::allocator implementation for mimalloc for use in STL containers.">mi_stl_allocator</a></code> struct which implements the <code>std::allocator</code> interface. For example: </p><div class="fragment"><div class="line">std::vector<some_struct, mi_stl_allocator<some_struct>> vec;</div> <div class="line">vec.push_back(some_struct());</div> </div><!-- fragment --><h3>Statistics</h3> |