aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/internal/ScalarOps.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal/ScalarOps.h')
-rw-r--r--src/internal/ScalarOps.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/internal/ScalarOps.h b/src/internal/ScalarOps.h
index e2acfb5d9..903f2751b 100644
--- a/src/internal/ScalarOps.h
+++ b/src/internal/ScalarOps.h
@@ -90,14 +90,14 @@ template<typename Scalar, typename Derived> \
Derived & \
EiObject<Scalar, Derived>::operator*=(const OtherScalar &other) \
{ \
- return *this = *this * other; \
+ return *this = *this * other; \
} \
\
template<typename Scalar, typename Derived> \
Derived & \
EiObject<Scalar, Derived>::operator/=(const OtherScalar &other) \
{ \
- return *this = *this / other; \
+ return *this = *this / other; \
}
EI_MAKE_SCALAR_OPS(int)