From c6aff3a8da4b92ccbf09b873f15da93baa6f1265 Mon Sep 17 00:00:00 2001 From: Frank Wolf Date: Tue, 23 Feb 2010 15:19:58 +0100 Subject: [PATCH] Fix copy-paste error in object::operator!=. --- luabind/object.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luabind/object.hpp b/luabind/object.hpp index 92284f34..f68c0239 100644 --- a/luabind/object.hpp +++ b/luabind/object.hpp @@ -257,7 +257,7 @@ LUABIND_BINARY_OP_DEF(<, lua_lessthan) typename enable_binary::type operator!=(LHS const& lhs, RHS const& rhs) { - return !(lhs < rhs); + return !(lhs == rhs); } template