You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure how this is building for everyone else, but on master the CMakeLists.txt is setting the C++ standard to 98:
set(CMAKE_CXX_STANDARD 98)
But any modern installation of boost uses clauses such as noexcept which are C++ 11 or later. I received many compilation issues out-of-the-box because of this. I recommend setting this to 11 to avoid others from stumbling on this, and those that have ancient versions of boost can set it back locally if they care:
set(CMAKE_CXX_STANDARD 11)
The text was updated successfully, but these errors were encountered:
Not sure how this is building for everyone else, but on
master
the CMakeLists.txt is setting the C++ standard to 98:But any modern installation of boost uses clauses such as
noexcept
which are C++ 11 or later. I received many compilation issues out-of-the-box because of this. I recommend setting this to 11 to avoid others from stumbling on this, and those that have ancient versions of boost can set it back locally if they care:The text was updated successfully, but these errors were encountered: