aboutsummaryrefslogtreecommitdiff
path: root/dep/zmqpp/zmqpp/message.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dep/zmqpp/zmqpp/message.cpp')
-rw-r--r--dep/zmqpp/zmqpp/message.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/dep/zmqpp/zmqpp/message.cpp b/dep/zmqpp/zmqpp/message.cpp
index 58587307364..4d81d247c62 100644
--- a/dep/zmqpp/zmqpp/message.cpp
+++ b/dep/zmqpp/zmqpp/message.cpp
@@ -138,7 +138,7 @@ void message::get(int64_t& integer, size_t const part) const
assert(sizeof(int64_t) == size(part));
uint64_t const* network_order = static_cast<uint64_t const*>(raw_data(part));
- integer = static_cast<int64_t>(zmqpp::htonll(*network_order));
+ integer = static_cast<int64_t>(htonll(*network_order));
}
void message::get(uint8_t& unsigned_integer, size_t const part) const
@@ -170,7 +170,7 @@ void message::get(uint64_t& unsigned_integer, size_t const part) const
assert(sizeof(uint64_t) == size(part));
uint64_t const* network_order = static_cast<uint64_t const*>(raw_data(part));
- unsigned_integer = zmqpp::ntohll(*network_order);
+ unsigned_integer = ntohll(*network_order);
}
void message::get(float& floating_point, size_t const part) const
@@ -228,7 +228,7 @@ message& message::operator<<(int32_t const integer)
message& message::operator<<(int64_t const integer)
{
- uint64_t network_order = zmqpp::htonll(static_cast<uint64_t>(integer));
+ uint64_t network_order = htonll(static_cast<uint64_t>(integer));
add(reinterpret_cast<void const*>(&network_order), sizeof(uint64_t));
return *this;
@@ -259,7 +259,7 @@ message& message::operator<<(uint32_t const unsigned_integer)
message& message::operator<<(uint64_t const unsigned_integer)
{
- uint64_t network_order = zmqpp::htonll(unsigned_integer);
+ uint64_t network_order = htonll(unsigned_integer);
add(reinterpret_cast<void const*>(&network_order), sizeof(uint64_t));
return *this;
@@ -329,7 +329,7 @@ void message::push_front(int32_t const integer)
void message::push_front(int64_t const integer)
{
- uint64_t network_order = zmqpp::htonll(static_cast<uint64_t>(integer));
+ uint64_t network_order = htonll(static_cast<uint64_t>(integer));
push_front(&network_order, sizeof(uint64_t));
}
@@ -353,7 +353,7 @@ void message::push_front(uint32_t const unsigned_integer)
void message::push_front(uint64_t const unsigned_integer)
{
- uint64_t network_order = zmqpp::htonll(unsigned_integer);
+ uint64_t network_order = htonll(unsigned_integer);
push_front(&network_order, sizeof(uint64_t));
}