Skip to content

Commit

Permalink
Minor comment fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Keita Iwabuchi committed Apr 14, 2024
1 parent 6b204d0 commit cdf1608
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/metall/basic_manager.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,15 @@ class basic_manager {
/// One of the primary purposes of this allocator is to provide a way to
/// temporarily allocate data structures that use Metall’s STL-allocator in a
/// heap in addition to in Metall memory space. It is advised to use this
/// allocator with caution as this two memory spaces are used transparently by
/// allocator with caution as two memory spaces are used transparently by
/// this allocator.
template <typename T>
using fallback_allocator =
container::fallback_allocator_adaptor<allocator_type<T>>;

/// \brief Fallback allocator type wrapped by scoped_allocator_adaptor.
template <typename T>
using scoped_fallback_allocator_type =
using scoped_fallback_allocator_type =
container::scoped_allocator_adaptor<fallback_allocator<T>>;

/// \brief Construct proxy
Expand Down

0 comments on commit cdf1608

Please sign in to comment.