Update of /cvsroot/luabind/luabind/luabind/luabind/detail
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6307/detail
Modified Files:
Tag: beta7-devel2
constructor.hpp other.hpp
Log Message:
Fixed typos.
Index: constructor.hpp
===================================================================
RCS file: /cvsroot/luabind/luabind/luabind/luabind/detail/constructor.hpp,v
retrieving revision 1.7.2.1
retrieving revision 1.7.2.2
diff -u -d -r1.7.2.1 -r1.7.2.2
--- constructor.hpp 19 Oct 2005 11:46:43 -0000 1.7.2.1
+++ constructor.hpp 19 Oct 2005 15:19:39 -0000 1.7.2.2
@@ -103,7 +103,7 @@
{
template<class T, class Policies, BOOST_PP_ENUM_PARAMS(LUABIND_MAX_ARITY, class A)>
static T* execute(
- lua_State*
+ lua_State* L
, weak_ref const&
, T*
, constructor<BOOST_PP_ENUM_PARAMS(LUABIND_MAX_ARITY,A)>*
Index: other.hpp
===================================================================
RCS file: /cvsroot/luabind/luabind/luabind/luabind/detail/other.hpp,v
retrieving revision 1.2
retrieving revision 1.2.4.1
diff -u -d -r1.2 -r1.2.4.1
--- other.hpp 14 Jun 2003 21:05:02 -0000 1.2
+++ other.hpp 19 Oct 2005 15:19:39 -0000 1.2.4.1
@@ -74,7 +74,7 @@
no_other_t is_other_test(...);
template<typename T>
- yes_other_t is_other_test(type< other<T> >);
+ yes_other_t is_other_test(type_< other<T> >);
template<bool wrapped>
struct other_unwrapper
@@ -102,7 +102,7 @@
public:
BOOST_STATIC_CONSTANT(
bool, value = (
- sizeof(detail::is_other_test(type<T>()))
+ sizeof(detail::is_other_test(type_<T>()))
== sizeof(detail::yes_other_t)));
};
|