mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-06 16:56:45 +08:00
fix: expected ( before ; token
This commit is contained in:
parent
82072214d8
commit
0b504f7b48
@ -30,7 +30,7 @@ public:
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
constexpr bool has_fn_info_v = typename has_fn_info<T>::type::value;
|
||||
constexpr bool has_fn_info_v = has_fn_info<T>::type::value;
|
||||
|
||||
template <typename T>
|
||||
class has_fn_error {
|
||||
@ -43,7 +43,7 @@ public:
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
constexpr bool has_fn_error_v = typename has_fn_error<T>::type::value;
|
||||
constexpr bool has_fn_error_v = has_fn_error<T>::type::value;
|
||||
|
||||
struct vtable_t {
|
||||
void (*info )(void *, std::string &&);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user