kakoune/src/clock.hh

15 lines
203 B
C++
Raw Normal View History

2016-07-20 09:49:04 +02:00
#ifndef clock_hh_INCLUDED
#define clock_hh_INCLUDED
#include <chrono>
namespace Kakoune
{
using Clock = std::chrono::steady_clock;
using TimePoint = Clock::time_point;
}
#endif // clock_hh_INCLUDED