Skip to content

Commit

Permalink
Fix copy-paste error in object::operator!=.
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Wolf authored and Daniel Wallin committed Feb 23, 2010
1 parent b158edf commit c6aff3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion luabind/object.hpp
Expand Up @@ -257,7 +257,7 @@ LUABIND_BINARY_OP_DEF(<, lua_lessthan)
typename enable_binary<bool,LHS,RHS>::type
operator!=(LHS const& lhs, RHS const& rhs)
{
return !(lhs < rhs);
return !(lhs == rhs);
}

template<class ValueWrapper, class Arguments>
Expand Down

0 comments on commit c6aff3a

Please sign in to comment.