From 58f3436d9bf5bb9ba7f5eb7a20cb91f3625707a8 Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Mon, 29 Dec 2014 10:50:06 -0800 Subject: [PATCH] fix bug in != operator --- libraries/shared/src/AACube.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/shared/src/AACube.h b/libraries/shared/src/AACube.h index 6de27ad433..b29bc49bef 100644 --- a/libraries/shared/src/AACube.h +++ b/libraries/shared/src/AACube.h @@ -79,7 +79,7 @@ inline bool operator==(const AACube& a, const AACube& b) { } inline bool operator!=(const AACube& a, const AACube& b) { - return a.getCorner() != b.getCorner() || a.getScale() == b.getScale(); + return a.getCorner() != b.getCorner() || a.getScale() != b.getScale(); } inline QDebug operator<<(QDebug debug, const AACube& cube) {