Skip to content

Commit

Permalink
issue #583 removing C++11 code.
Browse files Browse the repository at this point in the history
  • Loading branch information
psl-felipefarinon authored and hintjens committed Nov 19, 2013
1 parent f72dbb3 commit 8f85baf
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/clock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<uint64_t>((*my_get_tick_count64)());
#else
return now_us () / 1000;
Expand Down

0 comments on commit 8f85baf

Please sign in to comment.