From 31cf53f0250a6a381e63342c11704175101c0cc4 Mon Sep 17 00:00:00 2001 From: psl-felipefarinon Date: Mon, 11 Nov 2013 10:20:28 -0200 Subject: [PATCH] issue #583 removing C++11 code. --- src/clock.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/clock.cpp b/src/clock.cpp index de1ea867..2ef0bad1 100644 --- a/src/clock.cpp +++ b/src/clock.cpp @@ -153,7 +153,6 @@ uint64_t zmq::clock_t::now_ms () // does not guarantee that it will use a hardware that offers a monotonic timer. // So, lets use GetTickCount when GetTickCount64 is not available with an workaround // to its 32 bit limitation. - static_assert(sizeof(uint64_t) >= sizeof(ULONGLONG), "Loosing timer information"); return static_cast((*my_get_tick_count64)()); #else return now_us () / 1000;