Add parenthesis to fix compiler warnings

This commit is contained in:
Christoph Hertzberg 2018-04-15 18:43:56 +02:00
parent 42715533f1
commit 775766d175

View File

@ -265,7 +265,7 @@ namespace Eigen
{ \
Eigen::no_more_assert = true; \
if(report_on_cerr_on_assert_failure) \
eigen_plain_assert(a && #MSG); \
eigen_plain_assert((a) && #MSG); \
else \
EIGEN_THROW_X(Eigen::eigen_static_assert_exception()); \
}