We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba1a3ad commit 668bc50Copy full SHA for 668bc50
1 file changed
include/cpp_event_framework/StaticPool.hxx
@@ -33,7 +33,7 @@ namespace cpp_event_framework
33
* @tparam Alignment Alignment requirement
34
*/
35
template <uint32_t NumElements, size_t ElemSize, Mutex MutexType = std::mutex, size_t Alignment = sizeof(uint64_t)>
36
-class StaticPool : public std::pmr::memory_resource
+class StaticPool final : public std::pmr::memory_resource
37
{
38
private:
39
static constexpr size_t kAlignedElementSize = ((ElemSize + Alignment) / Alignment) * Alignment;
0 commit comments