From 871ebf1c1c5ed2a418c4140e43a3ecf31069cab7 Mon Sep 17 00:00:00 2001 From: Adrian Imboden Date: Mon, 17 Jul 2017 11:28:41 +0000 Subject: [PATCH] Fix private timer::clock_type fix #662 --- CHANGELOG.md | 1 + test/benchmarks/utf8_checker.cpp | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8468ca02..c1db7e02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ Version 83: * Turn some flat_static_buffer_tests on * Documentation work * read_some, async_read_some return bytes used +* Fix private timer::clock_type WebSocket diff --git a/test/benchmarks/utf8_checker.cpp b/test/benchmarks/utf8_checker.cpp index bdb8c5da..9ca893b8 100644 --- a/test/benchmarks/utf8_checker.cpp +++ b/test/benchmarks/utf8_checker.cpp @@ -22,9 +22,11 @@ public: class timer { + public: using clock_type = std::chrono::system_clock; + private: clock_type::time_point when_; public: