[luabind-cvs] luabind/luabind/src class.cpp,1.10,1.10.4.1
Brought to you by:
arvidn,
daniel_wallin
From: Daniel W. <dan...@us...> - 2005-10-24 00:31:47
|
Update of /cvsroot/luabind/luabind/luabind/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29574/src Modified Files: Tag: daniel-refactoring class.cpp Log Message: merged_beta7-devel2_into_daniel-refactoring_051024 Index: class.cpp =================================================================== RCS file: /cvsroot/luabind/luabind/luabind/src/class.cpp,v retrieving revision 1.10 retrieving revision 1.10.4.1 diff -u -d -r1.10 -r1.10.4.1 --- class.cpp 7 Aug 2004 13:37:11 -0000 1.10 +++ class.cpp 24 Oct 2005 00:31:35 -0000 1.10.4.1 @@ -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; |