Skip to content
Snippets Groups Projects
Commit 62fe6818 authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Fix macOS compilation, set c++14 as highest

parent 3434a1ce
No related branches found
No related tags found
No related merge requests found
Pipeline #9281 passed with warnings
......@@ -70,7 +70,7 @@ def cpp_flag(compiler):
The newer version is prefered over c++11 (when it is available).
"""
flags = ['-std=c++17', '-std=c++14', '-std=c++11']
flags = ['-std=c++14', '-std=c++11']
for flag in flags:
if has_flag(compiler, flag): return flag
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment