// file : odb/details/meta/remove-const-volatile.hxx // copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #ifndef ODB_DETAILS_META_REMOVE_CONST_VOLATILE_HXX #define ODB_DETAILS_META_REMOVE_CONST_VOLATILE_HXX #include #include #include namespace odb { namespace details { namespace meta { template struct remove_const_volatile { typedef typename remove_volatile::result>::result result; }; } } } #include #endif // ODB_DETAILS_META_REMOVE_CONST_VOLATILE_HXX