From 0905b7d4e9cf92bf2e4a6f8f0b6f0a7f16a73d80 Mon Sep 17 00:00:00 2001 From: Peter Thorson Date: Wed, 1 May 2013 07:00:37 -0500 Subject: [PATCH] switches static to reinterpret_cast references #218 --- websocketpp/processors/hybi00.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/websocketpp/processors/hybi00.hpp b/websocketpp/processors/hybi00.hpp index 0024355910..227f1c5b9e 100644 --- a/websocketpp/processors/hybi00.hpp +++ b/websocketpp/processors/hybi00.hpp @@ -67,7 +67,7 @@ public: explicit hybi00(bool secure, bool server, msg_manager_ptr manager) : processor(secure, server) , msg_hdr(0x00) - , msg_ftr(static_cast(0xff)) + , msg_ftr(reinterpret_cast(0xff)) , m_state(HEADER) , m_msg_manager(manager) {}