Update of /cvsroot/luabind/luabind/luabind/luabind
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20604/luabind
Modified Files:
Tag: luabind_rc_0_7
class.hpp function.hpp
Log Message:
added missing LUABIND_API in function.hpp and removed illegal qualification in class.hpp add_setter
Index: class.hpp
===================================================================
RCS file: /cvsroot/luabind/luabind/luabind/luabind/class.hpp,v
retrieving revision 1.64
retrieving revision 1.64.2.1
diff -u -d -r1.64 -r1.64.2.1
--- class.hpp 28 Nov 2005 20:55:34 -0000 1.64
+++ class.hpp 11 Jan 2006 22:32:59 -0000 1.64.2.1
@@ -726,11 +726,11 @@
, const boost::function2<int, lua_State*, int>& g);
#ifdef LUABIND_NO_ERROR_CHECKING
- void class_base::add_setter(
+ void add_setter(
const char* name
, const boost::function2<int, lua_State*, int>& s);
#else
- void class_base::add_setter(
+ void add_setter(
const char* name
, const boost::function2<int, lua_State*, int>& s
, int (*match)(lua_State*, int)
Index: function.hpp
===================================================================
RCS file: /cvsroot/luabind/luabind/luabind/luabind/function.hpp,v
retrieving revision 1.25
retrieving revision 1.25.2.1
diff -u -d -r1.25 -r1.25.2.1
--- function.hpp 4 Dec 2005 13:56:15 -0000 1.25
+++ function.hpp 11 Jan 2006 22:32:59 -0000 1.25.2.1
@@ -87,7 +87,7 @@
char end;
};
- struct function_rep
+ struct LUABIND_API function_rep
{
function_rep(const char* name): m_name(name) {}
void add_overload(const free_functions::overload_rep& o);
|