diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2021-05-28 02:24:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-28 02:24:30 (GMT) |
commit | dfe4575914e7998e266b3a56c3acee321662ab20 (patch) | |
tree | 568fbe4453b82faaf66738cf19492f93b63a1322 /config/cmake | |
parent | 168be9a0f0745261d28d60acea9e9fa6cfa93861 (diff) | |
download | hdf5-dfe4575914e7998e266b3a56c3acee321662ab20.zip hdf5-dfe4575914e7998e266b3a56c3acee321662ab20.tar.gz hdf5-dfe4575914e7998e266b3a56c3acee321662ab20.tar.bz2 |
Require a C++11 compiler to build the C++ wrappers (#693)
* Committing clang-format changes
* Requires a C++11 compiler to build the C++ wrappers
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'config/cmake')
-rw-r--r-- | config/cmake/HDFCXXCompilerFlags.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/cmake/HDFCXXCompilerFlags.cmake b/config/cmake/HDFCXXCompilerFlags.cmake index 757692c..e2904ca 100644 --- a/config/cmake/HDFCXXCompilerFlags.cmake +++ b/config/cmake/HDFCXXCompilerFlags.cmake @@ -9,7 +9,7 @@ # If you do not have access to either file, you may request a copy from # help@hdfgroup.org. # -set(CMAKE_CXX_STANDARD 98) +set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD_REQUIRED TRUE) set(CMAKE_CXX_EXTENSIONS OFF) |