Language
C++
Compiler
gcc 8.2.0
Options
Warnings
Don't Use Boost
C++17
no pedantic
Raw runtime options
imglist.txt
Part05.md
$ g++ prog.cc -Wall -Wextra -std=c++17
Exit Code:
0
C++
gcc 8.2.0
$ g++ prog.cc -Wall -Wextra -std=c++17
prog.cc: In function 'int main()':
prog.cc:5:10: warning: unused variable 'result' [-Wunused-variable]
auto result = Singleton<SampleObject>::getSingletonPtr();
^~~~~~