Support Class Library
A set of tools providing classes and utility
include
scl
tools
meta
enable_if.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <type_traits>
4
5
namespace
scl
{
6
namespace
tools{
7
namespace
meta{
11
template
<
bool
B,
class
T =
void
>
12
using
enable_if_t
=
typename
std::enable_if<B, T>::type;
13
}
14
}
15
}
scl
Global namespace of the SCL.
Definition:
alias.hpp:3
scl::tools::meta::enable_if_t
typename std::enable_if< B, T >::type enable_if_t
An handy type alias for the result of std::enable_if.
Definition:
enable_if.h:12
Generated by
1.8.13