15 lines
203 B
C++
15 lines
203 B
C++
|
#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
|