Loading...
Searching...
No Matches
Go to the documentation of this file.
6template <
bool,
class T =
void>
struct enable_if {};
12template <
typename T>
struct is_boolean {
static const bool value =
false; };
13template <>
struct is_boolean<bool> {
static const bool value =
true; };