Disable warning C4355 for plain.hpp similar to server.hpp (beware: this hides a real design problem)

This commit is contained in:
Norbert Nemec
2012-10-09 14:06:20 +02:00
parent dbdb150021
commit db0a43a228

View File

@@ -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