]> git.mxchange.org Git - simgear.git/commitdiff
Add operator!= to SGBucket
authortimoore <timoore>
Fri, 7 Dec 2007 23:35:04 +0000 (23:35 +0000)
committertimoore <timoore>
Fri, 7 Dec 2007 23:35:04 +0000 (23:35 +0000)
simgear/bucket/newbucket.hxx

index ccb5a8f9f48330590d469ac40b35a560685f502f..9609138c5d6671eae108ae205d1e4253de864efa 100644 (file)
@@ -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