Language
C++
Compiler
gcc HEAD 9.0.0 20180827 (experimental)
Options
Warnings
Boost 1.68.0
C++17
-pedantic
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.68.0/gcc-head/include -std=c++17 -pedantic
Exit Code:
0
Author
anonymous
over 6 years ago
C++
gcc HEAD 9.0.0 20180827 (experimental)
Author
anonymous
over 6 years ago
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.68.0/gcc-head/include -std=c++17 -pedantic
prog.cc: In function 'int main()':
prog.cc:12:6: warning: unused variable 'tptr' [-Wunused-variable]
12 | A* tptr = new(ptr) A(); // fine, but we might leak memory
| ^~~~