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
Would it be OK to start requiring C++11 compiler support? Especially range-based for loops and the auto keyword are nice features, and it's frustrating not being able to use them in new code while the compiler support is widely available.
To do this properly in CMake, we should use the target_compile_features option, which is available since CMake 3.1, so the minimal required version would be bumped up because of this.
The text was updated successfully, but these errors were encountered:
Would it be OK to start requiring C++11 compiler support? Especially range-based for loops and the auto keyword are nice features, and it's frustrating not being able to use them in new code while the compiler support is widely available.
To do this properly in CMake, we should use the target_compile_features option, which is available since CMake 3.1, so the minimal required version would be bumped up because of this.
—
Reply to this email directly or view it on GitHub.
Would it be OK to start requiring C++11 compiler support? Especially range-based for loops and the auto keyword are nice features, and it's frustrating not being able to use them in new code while the compiler support is widely available.
To do this properly in CMake, we should use the target_compile_features option, which is available since CMake 3.1, so the minimal required version would be bumped up because of this.
—
Reply to this email directly or view it on GitHub.
Would it be OK to start requiring C++11 compiler support? Especially range-based for loops and the auto keyword are nice features, and it's frustrating not being able to use them in new code while the compiler support is widely available.
To do this properly in CMake, we should use the target_compile_features option, which is available since CMake 3.1, so the minimal required version would be bumped up because of this.
The text was updated successfully, but these errors were encountered: