diff options
author | Daan <daanl@outlook.com> | 2022-04-08 14:44:35 -0700 |
---|---|---|
committer | Daan <daanl@outlook.com> | 2022-04-08 14:44:35 -0700 |
commit | 862f07bc7662b1788193027e98a4d4b572bbcaef (patch) | |
tree | eaa0d6e4ede88be73e440b292e4362da16eb1074 /docs/using.html | |
parent | 131b62283b6a58971e48c4521399dcb99004187f (diff) | |
parent | 674ee63fa741449d348b277eef6d06c268c6f925 (diff) |
Merge branch 'dev' into dev-slice
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> |