mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
Disable warning C4355 for plain.hpp similar to server.hpp (beware: this hides a real design problem)
This commit is contained in:
@@ -35,6 +35,12 @@
|
||||
|
||||
#include <iostream>
|
||||
|
||||
#ifdef _MSC_VER
|
||||
// Disable "warning C4355: 'this' : used in base member initializer list".
|
||||
# pragma warning(push)
|
||||
# pragma warning(disable:4355)
|
||||
#endif
|
||||
|
||||
namespace websocketpp {
|
||||
namespace socket {
|
||||
|
||||
@@ -116,4 +122,8 @@ private:
|
||||
} // namespace socket
|
||||
} // namespace websocketpp
|
||||
|
||||
#ifdef _MSC_VER
|
||||
# pragma warning(pop)
|
||||
#endif
|
||||
|
||||
#endif // WEBSOCKETPP_SOCKET_PLAIN_HPP
|
||||
|
||||
Reference in New Issue
Block a user