Language
C++
Compiler
gcc 12.1.0
Options
Warnings
Boost 1.79.0
C++2a
no pedantic
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.79.0-gcc-12.1.0/include -std=c++2a
10
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 -I/opt/wandbox/boost-1.79.0-gcc-12.1.0/include -std=c++2a
prog.cc: In function 'void* operator new(std::size_t, S*)':
prog.cc:17:32: warning: unused parameter 'size' [-Wunused-parameter]
17 | void* operator new(std::size_t size, S* ptr) noexcept {
| ~~~~~~~~~~~~^~~~
10