Fix private timer::clock_type

fix #662
This commit is contained in:
Adrian Imboden
2017-07-17 11:28:41 +00:00
committed by Vinnie Falco
parent 60e133ab4c
commit 871ebf1c1c
2 changed files with 3 additions and 0 deletions

View File

@@ -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

View File

@@ -22,9 +22,11 @@ public:
class timer
{
public:
using clock_type =
std::chrono::system_clock;
private:
clock_type::time_point when_;
public: