From 5c9bd5f0cb7d984ecd807ba22d2fc9ffd26f2ed5 Mon Sep 17 00:00:00 2001 From: Constantin Rack Date: Wed, 20 Jan 2016 19:30:21 +0100 Subject: [PATCH] Problem: SIZE_MAX is not defined in all stdint.h includes Solution: remove debug printf line completely --- tests/test_large_msg.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_large_msg.cpp b/tests/test_large_msg.cpp index 252010ce..43b490f1 100644 --- a/tests/test_large_msg.cpp +++ b/tests/test_large_msg.cpp @@ -28,7 +28,6 @@ */ #include -#include #include "testutil.hpp" int main (void) @@ -49,7 +48,6 @@ int main (void) zmq_msg_t msg, rcv; size_t big = 64 + (size_t) INT_MAX; - printf("Large msg: %u %llu %lu\n", INT_MAX, SIZE_MAX, big); rc = zmq_msg_init_size (&msg, big); assert (rc == 0);