Language
C++
Compiler
gcc 11.1.0
Options
Warnings
Boost 1.76.0
C++11
no pedantic
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.76.0/gcc-11.1.0/include -std=c++11  Exit Code: 
0
Author
anonymous
about 4 years ago
C++
gcc 11.1.0
Author
anonymous
about 4 years ago
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.76.0/gcc-11.1.0/include -std=c++11  prog.cc: In function 'int main()':
prog.cc:6:25: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings]
    6 |    char* initialValue = "@";
      |                         ^~~
prog.cc:6:10: warning: unused variable 'initialValue' [-Wunused-variable]
    6 |    char* initialValue = "@";
      |          ^~~~~~~~~~~~