Skip to content
Snippets Groups Projects
Commit e11878e8 authored by Tobias Leibner's avatar Tobias Leibner
Browse files

[type_traits] remove trailing ; to be consistent with documentation and

fix warnings about double ;; in gdt
parent f34d7501
No related branches found
No related tags found
No related merge requests found
......@@ -224,7 +224,7 @@ struct is_complex<std::complex<T>> : public std::true_type
}; \
\
static const bool value = helper<T_local>::value; \
};
}
/**
* \brief Macro to statically check a type for a typedef.
......@@ -258,7 +258,7 @@ DXTC_has_typedef(Bar)< Foo >::value
static std::false_type helper(...); \
\
static const bool value = decltype(helper<T_local>(0))::value; \
};
}
/**
* \brief Macro to statically check a class or struct for a static member.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment