[luabind-cvs] luabind/luabind/luabind value_wrapper.hpp,1.1.2.8,1.1.2.9
Brought to you by:
arvidn,
daniel_wallin
From: Daniel W. <dan...@us...> - 2005-10-19 16:12:17
|
Update of /cvsroot/luabind/luabind/luabind/luabind In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21955 Modified Files: Tag: beta7-devel2 value_wrapper.hpp Log Message: Fixed is_value_wrapper_arg for VC7.0. Index: value_wrapper.hpp =================================================================== RCS file: /cvsroot/luabind/luabind/luabind/luabind/Attic/value_wrapper.hpp,v retrieving revision 1.1.2.8 retrieving revision 1.1.2.9 diff -u -d -r1.1.2.8 -r1.1.2.9 --- value_wrapper.hpp 19 Oct 2005 12:02:11 -0000 1.1.2.8 +++ value_wrapper.hpp 19 Oct 2005 16:12:09 -0000 1.1.2.9 @@ -134,8 +134,8 @@ namespace detail { template<class T> - typename is_value_wrapper<T>::type is_value_wrapper_arg_check(T const volatile*); - + typename is_value_wrapper<T>::type is_value_wrapper_arg_check(T const*); + yes_t to_yesno(boost::mpl::true_); no_t to_yesno(boost::mpl::false_); |