From b22f231345176f31da21d47a8732f8aabc981d00 Mon Sep 17 00:00:00 2001 From: wmayer Date: Wed, 13 Dec 2017 17:24:39 +0100 Subject: [PATCH] fix invalid syntax --- src/Base/Rotation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Base/Rotation.cpp b/src/Base/Rotation.cpp index cdcb66e2f3..fbb66e65e4 100644 --- a/src/Base/Rotation.cpp +++ b/src/Base/Rotation.cpp @@ -664,7 +664,7 @@ bool Rotation::isIdentity() const this->quat[1] == 0 && this->quat[2] == 0) && (this->quat[3] == 1 || - this->quat[3] == -1); + this->quat[3] == -1)); } bool Rotation::isNull() const