Browse Source

Fix missing include

Marc Legendre 9 years ago
parent
commit
f7c2920e32
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Source/BansheeUtility/Source/BsThreadPool.cpp

+ 2 - 1
Source/BansheeUtility/Source/BsThreadPool.cpp

@@ -1,6 +1,7 @@
 //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
 //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
 //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
 //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
 #include "BsThreadPool.h"
 #include "BsThreadPool.h"
+#include "BsDebug.h"
 
 
 #if BS_PLATFORM == BS_PLATFORM_WIN32
 #if BS_PLATFORM == BS_PLATFORM_WIN32
 #include "windows.h"
 #include "windows.h"
@@ -344,4 +345,4 @@ namespace BansheeEngine
 
 
 		return (UINT32)mThreads.size();
 		return (UINT32)mThreads.size();
 	}
 	}
-}
+}