#ifndef COMMON_ALTRAITS_H #define COMMON_ALTRAITS_H namespace al { template struct type_identity { using type = T; }; template using type_identity_t = typename type_identity::type; } // namespace al #endif /* COMMON_ALTRAITS_H */