switches static to reinterpret_cast references #218

This commit is contained in:
Peter Thorson
2013-05-01 07:00:37 -05:00
parent 754651c9eb
commit 0905b7d4e9

View File

@@ -67,7 +67,7 @@ public:
explicit hybi00(bool secure, bool server, msg_manager_ptr manager)
: processor<config>(secure, server)
, msg_hdr(0x00)
, msg_ftr(static_cast<char>(0xff))
, msg_ftr(reinterpret_cast<char>(0xff))
, m_state(HEADER)
, m_msg_manager(manager) {}