You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
my OS: Windows,
and I modified the setting file of FastOlympicCoding, like this:
`
{
"name": "C++",
"extensions": ["cpp"],
"compile_cmd": "g++ "{source_file}" -std=c++17 -o "{file_name}"",
"run_cmd": ""{source_file_dir}\{file_name}.exe" {args} -debug",
my OS: Windows,
and I modified the setting file of FastOlympicCoding, like this:
`
{
"name": "C++",
"extensions": ["cpp"],
"compile_cmd": "g++ "{source_file}" -std=c++17 -o "{file_name}"",
"run_cmd": ""{source_file_dir}\{file_name}.exe" {args} -debug",
},
Mainly to modify the compiler to C++17, but if I use
#include<bits/stdc++.h>` in Cpp file, there will be errors when I build.-std=c++17
and#include<bits/stdc++.h>
with FastOlympicCoding---errors,-std=c++14 or 11
and#include<bits/stdc++.h>
with FastOlympicCoding---No error,-std=c++17
and#include<iostream>
with FastOlympicCoding---No error,-std=c++17
and#include<bits/stdc++.h>
without FastOlympicCoding---No error.please help me, thanks!
The text was updated successfully, but these errors were encountered: