git-svn-id: svn://elaine/murooma/trunk@291 d8a302eb-03bc-478d-80e4-98257eca68ef
This commit is contained in:
(no author) 2014-09-24 20:05:55 +00:00
parent 07fcca06ca
commit 732fea38ae

View file

@ -5,11 +5,11 @@
namespace chronos namespace chronos
{ {
using hrc = std::chrono::high_resolution_clock; typedef std::chrono::high_resolution_clock hrc;
using time_point_hrc = std::chrono::time_point<hrc>; typedef std::chrono::time_point<hrc> time_point_hrc;
using sec = std::chrono::seconds; typedef std::chrono::seconds sec;
using msec = std::chrono::milliseconds; typedef std::chrono::milliseconds msec;
using usec = std::chrono::microseconds; typedef std::chrono::microseconds usec;
} }