Language
C++
Compiler
gcc 5.1.0
Options
Warnings
Boost 1.67.0
C++17(GNU)
no pedantic
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.67.0/gcc-5.1.0/include -std=gnu++17
Exit Code:
1
Author
anonymous
almost 7 years ago
C++
gcc 5.1.0
Author
anonymous
almost 7 years ago
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.67.0/gcc-5.1.0/include -std=gnu++17
prog.cc:8:24: error: deleted definition of 'Foo::Foo(const Foo&)'
Foo::Foo(const Foo& arg) = delete;
^
prog.cc:5:3: note: previous declaration of 'Foo::Foo(const Foo&)'
Foo(const Foo& arg);
^