removed a redundant work from Thread.hpp

This commit is contained in:
hyung-hwan 2018-01-29 09:29:46 +00:00
parent 2a1cda7981
commit ab98ce632e

View File

@ -208,7 +208,7 @@ protected:
{
public:
TCallable (const T& t) QSE_CPP_NOEXCEPT: t(t) { }
virtual ~TCallable () QSE_CPP_NOEXCEPT {}
~TCallable () QSE_CPP_NOEXCEPT {}
RT invoke (ARGS... args) { return this->t(args ...); }
private: