From 908ddbe30f5b6712a7dd01b6418535d355012117 Mon Sep 17 00:00:00 2001 From: Sandu Liviu Catalin Date: Sat, 3 Oct 2015 21:55:08 +0300 Subject: [PATCH] Forgot to commit the header with the new changes to the basic event type. --- source/Event/Basic.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/Event/Basic.hpp b/source/Event/Basic.hpp index 58ce985c..a2b52dba 100644 --- a/source/Event/Basic.hpp +++ b/source/Event/Basic.hpp @@ -19,7 +19,7 @@ class BasicEvent protected: // -------------------------------------------------------------------------------------------- - typedef std::chrono::time_point TimePoint; + typedef std::chrono::time_point< std::chrono::steady_clock > TimePoint; public: @@ -749,12 +749,12 @@ protected: /* -------------------------------------------------------------------------------------------- * ... */ - void Attach(EventType evt) noexcept; + void Attach() noexcept; /* -------------------------------------------------------------------------------------------- * ... */ - void Detach(EventType evt) noexcept; + void Detach() noexcept; private: