summaryrefslogtreecommitdiff
path: root/boost/beast/websocket/detail/frame.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/beast/websocket/detail/frame.hpp')
-rw-r--r--boost/beast/websocket/detail/frame.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/boost/beast/websocket/detail/frame.hpp b/boost/beast/websocket/detail/frame.hpp
index c3bd1690a9..be79a8af39 100644
--- a/boost/beast/websocket/detail/frame.hpp
+++ b/boost/beast/websocket/detail/frame.hpp
@@ -30,7 +30,7 @@ inline
std::uint16_t
big_uint16_to_native(void const* buf)
{
- auto const p = reinterpret_cast<
+ auto const p = static_cast<
std::uint8_t const*>(buf);
return (p[0]<<8) + p[1];
}
@@ -39,7 +39,7 @@ inline
std::uint64_t
big_uint64_to_native(void const* buf)
{
- auto const p = reinterpret_cast<
+ auto const p = static_cast<
std::uint8_t const*>(buf);
return
(static_cast<std::uint64_t>(p[0])<<56) +
@@ -56,7 +56,7 @@ inline
std::uint32_t
little_uint32_to_native(void const* buf)
{
- auto const p = reinterpret_cast<
+ auto const p = static_cast<
std::uint8_t const*>(buf);
return
p[0] +
@@ -69,7 +69,7 @@ inline
void
native_to_little_uint32(std::uint32_t v, void* buf)
{
- auto p = reinterpret_cast<std::uint8_t*>(buf);
+ auto p = static_cast<std::uint8_t*>(buf);
p[0] = v & 0xff;
p[1] = (v >> 8) & 0xff;
p[2] = (v >> 16) & 0xff;