From 24512d5ec2b595c68fff96e2929f22683db83a5d Mon Sep 17 00:00:00 2001 From: Lev Nachmanson Date: Wed, 20 Sep 2023 14:12:36 -0700 Subject: [PATCH] typo --- src/util/memory_manager.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/memory_manager.h b/src/util/memory_manager.h index a50d03ac3..af56c4507 100644 --- a/src/util/memory_manager.h +++ b/src/util/memory_manager.h @@ -131,7 +131,7 @@ void dealloc_svect(T * ptr) { template struct std_allocator { using value_type = T; - // the constructors must be proveded according to cpp docs + // the constructors must be provided according to cpp docs std_allocator() = default; template constexpr std_allocator(const std_allocator&) noexcept {} @@ -145,7 +145,7 @@ struct std_allocator { } }; -// the comparison operators must be proveded according to cpp docs +// the comparison operators must be provided according to cpp docs template bool operator==(const std_allocator&, const std_allocator&) { return true; } template