Skip to content

Commit 9e0b9b4

Browse files
committed
Fix tests
1 parent 9b20c46 commit 9e0b9b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/socket_ref.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ static_assert(std::is_nothrow_swappable_v<zmq::socket_ref>);
77
#endif
88
static_assert(sizeof(zmq::socket_ref) == sizeof(void *), "size mismatch");
99
static_assert(alignof(zmq::socket_ref) == alignof(void *), "alignment mismatch");
10-
static_assert(std::is_trivially_copyable<zmq::socket_ref>::value,
10+
static_assert(ZMQ_IS_TRIVIALLY_COPYABLE(zmq::socket_ref),
1111
"needs to be trivially copyable");
1212

1313
TEST_CASE("socket_ref default init", "[socket_ref]")

0 commit comments

Comments
 (0)