summaryrefslogtreecommitdiff
path: root/src/clock.hh
diff options
context:
space:
mode:
authorFrank LENORMAND <lenormf@gmail.com>2018-12-21 15:03:21 +0300
committerFrank LENORMAND <lenormf@gmail.com>2018-12-23 09:26:12 +0300
commit623c8a76f412abc75dd56258ba71a97772092a23 (patch)
tree511729abaf7073bff0b899cf8061c152e2e094c8 /src/clock.hh
parent7b847f20dddad39d0b34c12dc3d0f31f463d7485 (diff)
src: Run and display the time taken by unit tests to run in debug mode
Knowing how much time the editor took to run unit tests gives users a notion of how fast it's performing on a given system.
Diffstat (limited to 'src/clock.hh')
-rw-r--r--src/clock.hh1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/clock.hh b/src/clock.hh
index b4138de0..741c049c 100644
--- a/src/clock.hh
+++ b/src/clock.hh
@@ -8,6 +8,7 @@ namespace Kakoune
using Clock = std::chrono::steady_clock;
using TimePoint = Clock::time_point;
+using DurationMs = std::chrono::milliseconds;
}