mirror of
https://github.com/zeromq/cppzmq.git
synced 2024-12-12 18:40:28 +01:00
Problem: extended initializer lists only available in C++11
This commit is contained in:
parent
6caa5d19d3
commit
f518a648ef
@ -8,23 +8,23 @@ TEST (message, create_destroy)
|
||||
|
||||
TEST (message, constructors)
|
||||
{
|
||||
const std::string hi {"Hi"};
|
||||
zmq::message_t hi_msg_a {hi.begin (), hi.end ()};
|
||||
const std::string hi ("Hi");
|
||||
zmq::message_t hi_msg_a (hi.begin (), hi.end ());
|
||||
ASSERT_EQ (hi_msg_a.size (), hi.size ());
|
||||
zmq::message_t hi_msg_b {hi.data (), hi.size ()};
|
||||
zmq::message_t hi_msg_b (hi.data (), hi.size ());
|
||||
ASSERT_EQ (hi_msg_b.size (), hi.size ());
|
||||
ASSERT_EQ (hi_msg_a, hi_msg_b);
|
||||
#if defined(ZMQ_BUILD_DRAFT_API) && defined(ZMQ_CPP11)
|
||||
zmq::message_t hello_msg_a {"Hello"};
|
||||
zmq::message_t hello_msg_a ("Hello");
|
||||
ASSERT_NE (hi_msg_a, hello_msg_a);
|
||||
ASSERT_NE (hi_msg_b, hello_msg_a);
|
||||
zmq::message_t hi_msg_c {hi};
|
||||
zmq::message_t hi_msg_c (hi);
|
||||
ASSERT_EQ (hi_msg_c, hi_msg_a);
|
||||
ASSERT_EQ (hi_msg_c, hi_msg_b);
|
||||
ASSERT_NE (hi_msg_c, hello_msg_a);
|
||||
#endif
|
||||
#ifdef ZMQ_HAS_RVALUE_REFS
|
||||
zmq::message_t hello_msg_b{zmq::message_t{"Hello"}};
|
||||
zmq::message_t hello_msg_b(zmq::message_t("Hello"));
|
||||
ASSERT_EQ (hello_msg_a, hello_msg_b);
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user