From a03289873a169f845136fd28e9aca4c71a95d167 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Mon, 17 Aug 2020 10:21:41 +0000 Subject: [PATCH] fixed Thread.hpp --- qse/include/qse/si/Thread.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qse/include/qse/si/Thread.hpp b/qse/include/qse/si/Thread.hpp index 953164d1..507c59aa 100644 --- a/qse/include/qse/si/Thread.hpp +++ b/qse/include/qse/si/Thread.hpp @@ -120,7 +120,7 @@ public: // execute the given function in a thread. // this is supposed to hide Thread::start(int flags). // in this class, the start() method must be given the ThreadRoutine point. - virtual int start (ThreadRoutine rtn, int flags = 0) QSE_CPP_NOEXCEPT QSE_CPP_OVERRIDE; + virtual int start (ThreadRoutine rtn, int flags = 0) QSE_CPP_OVERRIDE QSE_CPP_NOEXCEPT; protected: ThreadRoutine __tmprtn;