diff --git a/include/libimp/log.h b/include/libimp/log.h index 0ced440..9c40821 100644 --- a/include/libimp/log.h +++ b/include/libimp/log.h @@ -30,7 +30,7 @@ public: }; template -constexpr bool has_fn_info_v = typename has_fn_info::type::value; +constexpr bool has_fn_info_v = has_fn_info::type::value; template class has_fn_error { @@ -43,7 +43,7 @@ public: }; template -constexpr bool has_fn_error_v = typename has_fn_error::type::value; +constexpr bool has_fn_error_v = has_fn_error::type::value; struct vtable_t { void (*info )(void *, std::string &&);