diff --git a/src/libipc/utility/countof.h b/src/libipc/utility/countof.h index 82c1d02..b464e68 100644 --- a/src/libipc/utility/countof.h +++ b/src/libipc/utility/countof.h @@ -48,8 +48,8 @@ template ::value , bool = countof_trait_has_Size::value> struct countof_trait; -template -struct countof_trait { +template +struct countof_trait { constexpr static auto countof(C const &c) noexcept(noexcept(c.size())) { return c.size(); }