1
1
mirror of https://github.com/mawww/kakoune.git synced 2025-01-05 10:30:41 +03:00
kakoune/src/clock.hh

15 lines
203 B
C++
Raw Normal View History

2016-07-20 10:49:04 +03: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