mirror of https://github.com/CGAL/cgal
work around a bug of MSVC2013 for initializer lists
http://connect.microsoft.com/VisualStudio/feedback/details/792161/constructor-initializer-list-does-not-support-braced-init-list-form
This commit is contained in:
parent
ac195bb27a
commit
cae96035cb
|
|
@ -118,7 +118,7 @@
|
|||
#if !defined(__GNUC__) || defined(__INTEL_COMPILER)
|
||||
#define CGAL_CFG_NO_STATEMENT_EXPRESSIONS 1
|
||||
#endif
|
||||
#if defined(BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX) || (BOOST_VERSION < 105100)
|
||||
#if defined(BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX) || (BOOST_VERSION < 105100) || _MSC_VER==1800
|
||||
#define CGAL_CFG_NO_CPP0X_UNIFIED_INITIALIZATION_SYNTAX
|
||||
#endif
|
||||
#if __cplusplus < 201103L && !(_MSC_VER >= 1600)
|
||||
|
|
|
|||
Loading…
Reference in New Issue