blob: b4138de08c12b7383b4d1bd853af52d0a7454553 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#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
|