Some warnings fixed

This commit is contained in:
Nekotekina 2014-09-02 02:35:10 +04:00
parent 9c94a6943d
commit 6e02477fc6
2 changed files with 1 additions and 7 deletions

View File

@ -2,13 +2,6 @@
static std::thread::id main_thread;
struct rThread
{
static bool IsMain() { std::this_thread::get_id() == main_thread; }
};
class ThreadExec;
class NamedThreadBase
{
std::string m_name;

View File

@ -5,6 +5,7 @@ class func_caller
{
public:
virtual void operator()() = 0;
virtual ~func_caller(){};
};
namespace detail