Language
C++
Compiler
gcc 9.2.0
Options
Warnings
Boost 1.72.0
C++17
no pedantic
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.72.0/gcc-9.2.0/include -std=c++17
Exit Code:
1
Author
anonymous
over 5 years ago
C++
gcc 9.2.0
Author
anonymous
over 5 years ago
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.72.0/gcc-9.2.0/include -std=c++17
prog.cc: In function 'Socket make_socket()':
prog.cc:17:10: error: use of deleted function 'constexpr Socket::Socket(const Socket&)'
17 | return s;
| ^
prog.cc:1:7: note: 'constexpr Socket::Socket(const Socket&)' is implicitly declared as deleted because 'Socket' declares a move constructor or move assignment operator
1 | class Socket
| ^~~~~~