Language
C++
Compiler
gcc 12.1.0
Options
Warnings
Don't Use Boost
C++11
no pedantic
$ g++ prog.cc -Wall -Wextra -std=c++11
a (0)
Exit Code:
0
Author
anonymous
over 2 years ago
C++
gcc 12.1.0
Author
anonymous
over 2 years ago
$ g++ prog.cc -Wall -Wextra -std=c++11
prog.cc: In copy constructor 'PlayerList::PlayerList(const PlayerList&)':
prog.cc:55:42: warning: unused parameter 'list' [-Wunused-parameter]
55 | PlayerList::PlayerList(const PlayerList& list){ std::cout << "don't use me!" << std::endl; }
| ~~~~~~~~~~~~~~~~~~^~~~
a (0)