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