From 8486e09c1b12f0cc483187227a88ffd1a7d48f53 Mon Sep 17 00:00:00 2001 From: dudilikvornik Date: Wed, 3 Apr 2019 23:21:27 -0700 Subject: [PATCH] Thread members re order warning. --- src/Param.h | 1 - src/Thread.h | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Param.h b/src/Param.h index 42cad36..bcc6554 100644 --- a/src/Param.h +++ b/src/Param.h @@ -8,7 +8,6 @@ #include #include #include "Exception.h" -#include "NoExcept.h" namespace core { diff --git a/src/Thread.h b/src/Thread.h index 70d6de7..c5c6161 100644 --- a/src/Thread.h +++ b/src/Thread.h @@ -53,8 +53,8 @@ namespace core private: thread_ptr m_thread; - Callable m_func; std::string m_name; + Callable m_func; }; class Thread {