Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Suppress two instances of "warning C4503: 'identifier' : decorated na…
…me length exceeded, name was truncated" generated too late for disable to be effective inside push/pop
  • Loading branch information
garethsb committed Nov 24, 2017
commit ff50bb0305ba6495ffc1d4170f4c2eec88404700
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@
#include "test_websocket_server.h"

#ifdef _WIN32
#pragma warning(disable : 4503) // generated too late for disable to be effective inside push/pop
#pragma warning( push )
#pragma warning(disable : 4100 4127 4996 4512 4701 4267 4067 4503 4005)
#pragma warning(disable : 4100 4127 4996 4512 4701 4267 4067 4005)
#define _WEBSOCKETPP_CPP11_STL_
#define _WEBSOCKETPP_CONSTEXPR_TOKEN_
#if _MSC_VER < 1900
Expand Down