File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed
Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -425,7 +425,8 @@ endif()
425425# ##############################################################################
426426# Coinutils
427427# ##############################################################################
428- # Coin-OR does not support C++17/C++20 (use of 'register' storage class specifier)
428+
429+ # Coin-OR uses the 'register' storage class specifier which requires C++11.
429430set (CMAKE_CXX_STANDARD 11)
430431if (WIN32 )
431432 set (BUILD_SHARED_LIBS OFF )
Original file line number Diff line number Diff line change 1515
1616#include < algorithm>
1717#include < exception> // IWYU pragma: keep
18- #include < filesystem> // NOLINT(build/c++17)
18+ #include < filesystem> // NOLINT
1919#include < regex> // NOLINT
2020#include < string>
2121#include < string_view>
Original file line number Diff line number Diff line change 1616#include " ortools/third_party_solvers/xpress_environment.h"
1717
1818#include < cstdlib>
19- // NOLINTNEXTLINE(build/c++17)
20- #include < filesystem>
19+ #include < filesystem> // NOLINT
2120#include < functional>
2221#include < string>
2322#include < vector>
2827#include " absl/strings/str_cat.h"
2928#include " absl/strings/str_join.h"
3029#include " absl/synchronization/mutex.h"
31- #include " ortools/base/logging.h"
3230#include " ortools/base/status_builder.h"
3331#include " ortools/third_party_solvers/dynamic_library.h"
3432
You can’t perform that action at this time.
0 commit comments