Create typedef type if condition is false. More...
Public Types | |
typedef T | type |
Create typedef type if condition is false.
The first parameter conditional boolean. This will be evaluated as true or false. The second parameter is the type of the resulting typedef.
If the test failed, typedef type exists. If it succeeded, the typedef does not exist, causing template instantiation failure.
B | Condition to test for false . |
T | Type of the result, void is the default. |
T Burger::disable_if< B, T >::type |