#ifndef TYPEASVALUE_SRC_CONDITIONAL_IF_H_ #define TYPEASVALUE_SRC_CONDITIONAL_IF_H_ #include namespace tav { template < bool Condition, typename TrueBranch, typename FalseBranch > using If = std::conditional< Condition, TrueBranch, FalseBranch >; } #endif // TYPEASVALUE_SRC_CONDITIONAL_IF_H_