mirror of
https://github.com/zeromq/cppzmq.git
synced 2025-12-23 14:03:15 +01:00
Reformat all files with clang-format
This commit is contained in:
@@ -74,12 +74,12 @@ TEST_CASE("multipart legacy test", "[multipart]")
|
||||
multipart.pushtyp(1.0f);
|
||||
multipart.pushmem("Frame0", 6);
|
||||
assert(multipart.size() == 10);
|
||||
|
||||
const message_t& front_msg = multipart.front();
|
||||
|
||||
const message_t &front_msg = multipart.front();
|
||||
assert(multipart.size() == 10);
|
||||
assert(std::string(front_msg.data<char>(), front_msg.size()) == "Frame0");
|
||||
|
||||
const message_t& back_msg = multipart.back();
|
||||
|
||||
const message_t &back_msg = multipart.back();
|
||||
assert(multipart.size() == 10);
|
||||
assert(std::string(back_msg.data<char>(), back_msg.size()) == "Frame9");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user