File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
Language : Cpp
3
- Standard : c++14
3
+ Standard : c++17
4
4
5
5
6
6
# The following is close to the style we've been using all these years
@@ -33,7 +33,7 @@ PointerAlignment: Left
33
33
34
34
SortIncludes : true
35
35
IncludeBlocks : Merge
36
- IncludeCategories :
36
+ IncludeCategories :
37
37
- Regex : ' ^"'
38
38
Priority : 1
39
39
- Regex : ' ^<ql/'
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ def check(header):
11
11
source_file = header + ".cpp"
12
12
shutil .copy (header , source_file )
13
13
object_file = header + ".o"
14
- command = f"{ cxx } -std=c++14 -c -Wno-unknown-pragmas -Wall -Werror -I. { source_file } -o { object_file } "
14
+ command = f"{ cxx } -std=c++17 -c -Wno-unknown-pragmas -Wall -Werror -I. { source_file } -o { object_file } "
15
15
print (command , file = sys .stderr )
16
16
code = os .system (command )
17
17
try :
You can’t perform that action at this time.
0 commit comments