group: make msvc happy with constness on virtual functions

This commit is contained in:
Michele Caini
2023-04-18 15:22:04 +02:00
parent d435fc7792
commit 78867d5c9b

View File

@@ -152,7 +152,7 @@ public:
}
}
size_type owned(const id_type *elem, size_type length) const noexcept final {
size_type owned(const id_type *elem, const size_type length) const noexcept final {
size_type cnt = 0u;
for(auto pos = 0u; pos < length; ++pos) {