v0.13.2
Loading...
Searching...
No Matches
enable_if.hpp
Go to the documentation of this file.
1/* Workaround to pre c++11 compilers for std::enable_if */
2
3#pragma once
4
5namespace std
6{
7 template <bool Condition, typename T = void> struct enable_if
8 {};
9
10 template <typename T> struct enable_if<true, T>
11 {
12 typedef T type;
13 };
14}
const double T
Definition: enable_if.hpp:6