0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-28 16:15:23 +08:00

Problem: redundant empty dtor

Solution: removed
This commit is contained in:
Simon Giesecke 2018-05-26 18:49:56 +02:00
parent 6ef67f13e3
commit 97ba02bc2f
2 changed files with 0 additions and 5 deletions

View File

@ -136,10 +136,6 @@ zmq::clock_t::clock_t () :
{
}
zmq::clock_t::~clock_t ()
{
}
uint64_t zmq::clock_t::now_us ()
{
#if defined ZMQ_HAVE_WINDOWS

View File

@ -54,7 +54,6 @@ class clock_t
{
public:
clock_t ();
~clock_t ();
// CPU's timestamp counter. Returns 0 if it's not available.
static uint64_t rdtsc ();