Commit 97ba02bc authored by Simon Giesecke's avatar Simon Giesecke

Problem: redundant empty dtor

Solution: removed
parent 6ef67f13
...@@ -136,10 +136,6 @@ zmq::clock_t::clock_t () : ...@@ -136,10 +136,6 @@ zmq::clock_t::clock_t () :
{ {
} }
zmq::clock_t::~clock_t ()
{
}
uint64_t zmq::clock_t::now_us () uint64_t zmq::clock_t::now_us ()
{ {
#if defined ZMQ_HAVE_WINDOWS #if defined ZMQ_HAVE_WINDOWS
......
...@@ -54,7 +54,6 @@ class clock_t ...@@ -54,7 +54,6 @@ class clock_t
{ {
public: public:
clock_t (); clock_t ();
~clock_t ();
// CPU's timestamp counter. Returns 0 if it's not available. // CPU's timestamp counter. Returns 0 if it's not available.
static uint64_t rdtsc (); static uint64_t rdtsc ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment