Commit 872ef073 authored by Jakob Otto's avatar Jakob Otto

Remove unnecessary to_string

parent b95c1694
...@@ -77,7 +77,7 @@ public: ...@@ -77,7 +77,7 @@ public:
std::unique_ptr<endpoint_manager_queue::message> msg) { std::unique_ptr<endpoint_manager_queue::message> msg) {
auto writer = make_packet_writer_decorator(*this, parent); auto writer = make_packet_writer_decorator(*this, parent);
if (auto err = application_.write_message(writer, std::move(msg))) if (auto err = application_.write_message(writer, std::move(msg)))
CAF_LOG_ERROR("write_message failed: " << to_string(err)); CAF_LOG_ERROR("write_message failed: " << err);
} }
template <class Parent> template <class Parent>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment