We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb8ef46 commit 7a378b6Copy full SHA for 7a378b6
buildcpp.py
@@ -9,5 +9,6 @@
9
code += f.readlines()
10
with open("a.cpp", "w") as f:
11
f.writelines(code)
12
- cmd = "g++ a.cpp -std=c++20"
13
- os.system(cmd)
+ cmd = "g++ a.cpp -std=c++11"
+ if 0 != os.system(cmd):
14
+ exit(-1)
0 commit comments