[luabind-cvs] luabind/luabind/luabind/detail policy.hpp,1.52,1.53
Brought to you by:
arvidn,
daniel_wallin
From: Arvid N. <ar...@us...> - 2005-12-10 16:53:02
|
Update of /cvsroot/luabind/luabind/luabind/luabind/detail In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30137/luabind/detail Modified Files: policy.hpp Log Message: fixed incorrect boost version check Index: policy.hpp =================================================================== RCS file: /cvsroot/luabind/luabind/luabind/luabind/detail/policy.hpp,v retrieving revision 1.52 retrieving revision 1.53 diff -u -d -r1.52 -r1.53 --- policy.hpp 4 Dec 2005 13:56:16 -0000 1.52 +++ policy.hpp 10 Dec 2005 16:52:54 -0000 1.53 @@ -1296,7 +1296,7 @@ namespace luabind { namespace { -#if defined(__BORLANDC__) || (BOOST_VERSION < 103400 && defined(__GNUC__)) +#if defined(__BORLANDC__) || (BOOST_VERSION >= 103400 && defined(__GNUC__)) static inline boost::arg<0> return_value() { return boost::arg<0>(); |