[luabind-cvs] luabind/luabind/src class.cpp,1.10,1.11
Brought to you by:
arvidn,
daniel_wallin
From: Daniel W. <dan...@us...> - 2005-12-04 13:57:12
|
Update of /cvsroot/luabind/luabind/luabind/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26300 Modified Files: class.cpp Log Message: Fixed for VC6.5. Index: class.cpp =================================================================== RCS file: /cvsroot/luabind/luabind/luabind/src/class.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- class.cpp 7 Aug 2004 13:37:11 -0000 1.10 +++ class.cpp 4 Dec 2005 13:57:04 -0000 1.11 @@ -233,7 +233,7 @@ } void class_base::init( - LUABIND_TYPE_INFO type_ + LUABIND_TYPE_INFO type_id , LUABIND_TYPE_INFO holder_type , LUABIND_TYPE_INFO const_holder_type , void*(*extractor)(void*) @@ -249,7 +249,7 @@ , int holder_size , int holder_alignment) { - m_registration->m_type = type_; + m_registration->m_type = type_id; m_registration->m_holder_type = holder_type; m_registration->m_const_holder_type = const_holder_type; m_registration->m_extractor = extractor; |