aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/Meta.h
diff options
context:
space:
mode:
authorGravatar Alexander Neumann <Alexander.Neumann@hamburg.de>2020-09-07 11:42:30 +0200
committerGravatar Alexander Neumann <Alexander.Neumann@hamburg.de>2020-09-07 11:42:30 +0200
commit5272106826f1b9a0b938878e06c6cebd12a26a9c (patch)
tree67add4faa1f505c489d267d948732a3a823f5ba8 /Eigen/src/Core/util/Meta.h
parent5f25bcf7d6918f5c6091fb4e961e5607e13b7324 (diff)
remove semi triggering -Wextra-semi-stmt
Diffstat (limited to 'Eigen/src/Core/util/Meta.h')
-rwxr-xr-xEigen/src/Core/util/Meta.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/util/Meta.h b/Eigen/src/Core/util/Meta.h
index 68452ecfa..7932c8df6 100755
--- a/Eigen/src/Core/util/Meta.h
+++ b/Eigen/src/Core/util/Meta.h
@@ -688,7 +688,7 @@ bool not_equal_strict(const double& x,const double& y) { return std::not_equal_t
EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC unsigned int as_uint(float x)
{
unsigned int ret;
- EIGEN_USING_STD(memcpy);
+ EIGEN_USING_STD(memcpy)
memcpy(&ret, &x, sizeof(float));
return ret;
}