Kungenn
Veteran OT User
When I try to compile with --enable-debug I get this error:
And on lines 38 to 44 in connection.h it's this.
Any idea how to fix it?
Thanks a bunch in advance
Code:
connection.h:41: error: expected unqualified-id before '<<' token
And on lines 38 to 44 in connection.h it's this.
Code:
38: #ifdef __DEBUG_NET__
39: #define PRINT_ASIO_ERROR(description) \
40: std::cout << "[Error - " << __FUNCTION__ << "] " << description << " - "
41: << error.message() << " (" << error.message() << ")" << std::endl;
42: #else
43: #define PRINT_ASIO_ERROR(x)
44: #endif
Any idea how to fix it?
Thanks a bunch in advance