-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Some parts of ROOT still mention C++11 #8643
Copy link
Copy link
Closed
Description
The minimum version is C++14 since #8583.
root/core/foundation/inc/ROOT/RConfig.hxx
Lines 47 to 52 in 8341e59
| # if defined(__cplusplus) && (__cplusplus < 201103L) | |
| # error "ROOT requires support for C++11 or higher." | |
| # if defined(__GNUC__) || defined(__clang__) | |
| # error "Pass `-std=c++11` as compiler argument." | |
| # endif | |
| # endif |
root/documentation/doxygen/Makefile
Lines 27 to 28 in 8341e59
| filter: | |
| `root-config --cxx` -o filter filter.cxx -std=c++11 |
Lines 348 to 350 in 8341e59
| win32gcc | win64gcc) | |
| # Windows (32 or 64) with cygwin gcc | |
| auxcflags="-std=gnu++11" |
Possibly more in pyroot / cppyy
Reactions are currently unavailable