Skip to content

Commit

Permalink
Set default C+ version to 17
Browse files Browse the repository at this point in the history
  • Loading branch information
philippeVerney committed Nov 22, 2024
1 parent 2e71203 commit ad66316
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
endif (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)

if (NOT DEFINED CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD 17)
endif()
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
- fetpapi (Git clone this repository into this folder "fetpapi". You should then have a path fetpapiEnv/fetpapi/src)
- dependencies
- The following compilers are known to work (used in CI)
- gcc from version 4.8
- gcc from version 8
- visual studio from version 2019
# Prepare the dependencies
Download (build and install if necessary) third party libraries:
Expand Down
3 changes: 2 additions & 1 deletion python/example/etp_client_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,5 +96,6 @@ def start_etp_server(client_session):
else:
print("This dataspace has no 2d Grid")

client_session.close();
repo.clear()
client_session.close()
print("FINISHED")

0 comments on commit ad66316

Please sign in to comment.