We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51f01a8 commit 343f892Copy full SHA for 343f892
src/CMakeLists.txt
@@ -225,6 +225,9 @@ IF(WIN32)
225
Boost::thread
226
Boost::date_time
227
)
228
+ # There is an issue with MSVC 2017 and Eigen (due to std::aligned_storage).
229
+ # See https://github.com/ceres-solver/ceres-solver/issues/481
230
+ target_compile_definitions(${LIBRARY_NAME} PRIVATE _ENABLE_EXTENDED_ALIGNED_STORAGE)
231
ENDIF(WIN32)
232
233
if (HPP_FCL_TURN_ASSERT_INTO_EXCEPTION)
src/narrowphase/support_functions.cpp
@@ -38,6 +38,8 @@
38
39
#include "hpp/fcl/narrowphase/support_functions.h"
40
41
+#include <algorithm>
42
+
43
namespace hpp {
44
namespace fcl {
45
namespace details {
0 commit comments