Ignore:
Timestamp:
09/09/13 19:27:27 (12 years ago)
Author:
epyon
Message:
  • type_traits - fix for is_stdstring
  • type_traits - added function_traits
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/nv/lua/lua_values.hh

    r208 r211  
    5252                namespace detail
    5353                {
     54                        struct void_type {};
     55
    5456                        void push_unsigned( lua_State *L, lunsigned v );
    5557                        void push_integer ( lua_State *L, linteger v );
     
    238240
    239241                        template < typename T >
    240                         inline T get_value( lua_State *L, int index )
     242                        inline typename std::remove_reference<T>::type get_value( lua_State *L, int index )
    241243                        {
    242244                                typedef typename type_degrade<T>::type degraded;
Note: See TracChangeset for help on using the changeset viewer.