Remove deprecated abstract_clock::elapsed

This commit is contained in:
Vinnie Falco
2015-07-17 09:55:24 -07:00
parent b38a96ae82
commit fad9998f9d
2 changed files with 5 additions and 11 deletions

View File

@@ -69,12 +69,6 @@ public:
/** Returns the current time. */
virtual time_point now() const = 0;
/** Returning elapsed ticks since the epoch. */
rep elapsed() const
{
return now().time_since_epoch().count();
}
};
//------------------------------------------------------------------------------