We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4c13ac commit 1257ec0Copy full SHA for 1257ec0
QP_solver/include/CGAL/QP_solver/functors.h
@@ -254,6 +254,7 @@ class Map_with_default {
254
: map(m), d(v)
255
{}
256
257
+#if defined(BOOST_MSVC) && (_MSC_VER < 1920) // 1920 is Visual Studio 2019 version 16.0.0
258
// Added as workaround for VC2017 with /arch:AVX to fix
259
// https://cgal.geometryfactory.com/CGAL/testsuite/CGAL-4.14-I-95/QP_solver/TestReport_afabri_x64_Cygwin-Windows10_MSVC2017-Release-64bits.gz
260
Map_with_default& operator=(const Map_with_default& other)
@@ -262,6 +263,7 @@ class Map_with_default {
262
263
d = other.d;
264
return *this;
265
}
266
+#endif
267
268
// operator()
269
const mapped_type& operator() (key_type n) const {
0 commit comments