1 #ifndef INCG_PHI_CORE_TYPE_TRAITS_ADD_CONST_HPP 2 #define INCG_PHI_CORE_TYPE_TRAITS_ADD_CONST_HPP 4 #include "phi/phi_config.hpp" 6 #if PHI_HAS_EXTENSION_PRAGMA_ONCE() 10 DETAIL_PHI_BEGIN_NAMESPACE()
12 template <typename TypeT>
15 using type =
const TypeT;
18 template <
typename TypeT>
19 using add_const_t =
typename add_const<TypeT>::type;
21 DETAIL_PHI_END_NAMESPACE()
23 #endif // INCG_PHI_CORE_TYPE_TRAITS_ADD_CONST_HPP Definition: add_const.hpp:13