Language
C++
Compiler
gcc HEAD 12.0.0 20210721 (experimental)
Options
Warnings
Boost 1.73.0
C++2b(GNU)
no pedantic
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.73.0/gcc-head/include -std=gnu++2b 32766
Exit Code:
0
Author
anonymous
over 4 years ago
C++
gcc HEAD 12.0.0 20210721 (experimental)
Author
anonymous
over 4 years ago
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.73.0/gcc-head/include -std=gnu++2b prog.cc:1: warning: ignoring '#pragma warning ' [-Wunknown-pragmas]
1 | #pragma warning(disable:4996)
|
prog.cc: In function 'int main()':
prog.cc:9:11: warning: unused variable 'file' [-Wunused-variable]
9 | FILE* file = freopen("sample_input.txt", "r", stdin);
| ^~~~
32766