Merge pull request #269 from wmamrak/develop

Minor documentation fixes and template parameter renames
This commit is contained in:
Ion Gaztañaga
2025-09-05 00:08:06 +02:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -258,10 +258,10 @@ class offset_ptr;
//////////////////////////////////////////////////////////////////////////////
//Single segment memory allocation algorithms
template<class MutexFamily, class VoidMutex = offset_ptr<void> >
template<class MutexFamily, class VoidPointer = offset_ptr<void> >
class simple_seq_fit;
template<class MutexFamily, class VoidMutex = offset_ptr<void>, std::size_t MemAlignment = 0>
template<class MutexFamily, class VoidPointer = offset_ptr<void>, std::size_t MemAlignment = 0>
class rbtree_best_fit;
//////////////////////////////////////////////////////////////////////////////

View File

@@ -372,7 +372,7 @@ typedef basic_managed_shared_memory
fixed_managed_shared_memory;
//!Typedef for a default basic_managed_shared_memory
//!of narrow characters to be placed in a fixed address
//!of wide characters to be placed in a fixed address
typedef basic_managed_shared_memory
<wchar_t
,rbtree_best_fit<mutex_family, void*>