From 0b504f7b4877e3b2f13dbbd64754d125f7738a8f Mon Sep 17 00:00:00 2001 From: mutouyun Date: Sun, 22 May 2022 20:34:56 +0800 Subject: [PATCH] fix: expected ( before ; token --- include/libimp/log.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 &&);