Some warning fixes

This commit is contained in:
2023-10-29 09:20:23 +01:00
parent 1ca861459c
commit 7773c55e1a
10 changed files with 66 additions and 16 deletions
+2 -2
View File
@@ -196,7 +196,7 @@ public:
, comp(comp)
{
}
constexpr explicit Map(const Allocator& alloc) noexcept(noexcept(Compare))
constexpr explicit Map(const Allocator& alloc) noexcept(noexcept(Compare()))
: nodeContainer(alloc)
, root(SIZE_MAX)
, beginIt(SIZE_MAX)
@@ -662,4 +662,4 @@ private:
return !comp(a, b) && !comp(b, a);
}
};
} // namespace Seele
} // namespace Seele