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 11---
22Language : Cpp
3- Standard : c++14
3+ Standard : c++17
44
55
66# The following is close to the style we've been using all these years
@@ -33,7 +33,7 @@ PointerAlignment: Left
3333
3434SortIncludes : true
3535IncludeBlocks : Merge
36- IncludeCategories :
36+ IncludeCategories :
3737 - Regex : ' ^"'
3838 Priority : 1
3939 - Regex : ' ^<ql/'
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ def check(header):
1111 source_file = header + ".cpp"
1212 shutil .copy (header , source_file )
1313 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 } "
1515 print (command , file = sys .stderr )
1616 code = os .system (command )
1717 try :
You can’t perform that action at this time.
0 commit comments