mirror of
https://github.com/zeromq/cppzmq.git
synced 2024-12-12 10:33:52 +01:00
Simplify code by trusting the compiler
This commit is contained in:
parent
93e3090eb3
commit
30fdfe0287
@ -50,11 +50,7 @@ recv_result_t recv_multipart_n(socket_ref s, OutputIt out, size_t n,
|
||||
message_t msg;
|
||||
while (true)
|
||||
{
|
||||
#ifdef ZMQ_CPP17
|
||||
if constexpr (CheckN)
|
||||
#else
|
||||
if (CheckN)
|
||||
#endif
|
||||
{
|
||||
if (msg_count >= n)
|
||||
throw std::runtime_error("Too many message parts in recv_multipart_n");
|
||||
|
Loading…
Reference in New Issue
Block a user