From 4b7361dfe758c5195c6f61b143cc760e517ec4fa Mon Sep 17 00:00:00 2001 From: timoore Date: Fri, 7 Dec 2007 23:35:04 +0000 Subject: [PATCH] Add operator!= to SGBucket --- simgear/bucket/newbucket.hxx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/simgear/bucket/newbucket.hxx b/simgear/bucket/newbucket.hxx index ccb5a8f9..9609138c 100644 --- a/simgear/bucket/newbucket.hxx +++ b/simgear/bucket/newbucket.hxx @@ -310,6 +310,11 @@ public: friend bool operator== ( const SGBucket&, const SGBucket& ); }; +inline bool operator!= (const SGBucket& lhs, const SGBucket& rhs) + { + return !(lhs == rhs); + } + /** * \relates SGBucket -- 2.39.2