/* * Acess2 C++ Library * - By John Hodge (thePowersGang) * * type_traits (header) * - C++11 type traits */ #ifndef _LIBCXX_TYPE_TRAITS_ #define _LIBCXX_TYPE_TRAITS_ #include "_libcxx_helpers.h" #if !_CXX11_AVAIL # error "This header requires C++11 support enabled" #endif template struct remove_reference { typedef T type; }; template struct remove_reference { typedef T type; }; template struct remove_reference { typedef T type; }; #endif // vim: ft=cpp