diff options
author | Sadie Powell <sadie@witchery.services> | 2021-03-05 08:39:42 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-03-05 09:17:13 +0000 |
commit | 2ba32afa9a9aca7c82966b66bda16c3c3dbfbba5 (patch) | |
tree | 74d565304ac68244d655a257ce27fe8a920fe510 /include/threadengines | |
parent | 9d26c40d1bd8ab4691619ebc0447d29281463cb1 (diff) |
Fix a bunch of really obvious unnecessary includes.
Diffstat (limited to 'include/threadengines')
-rw-r--r-- | include/threadengines/threadengine_pthread.h | 3 | ||||
-rw-r--r-- | include/threadengines/threadengine_win32.h | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/threadengines/threadengine_pthread.h b/include/threadengines/threadengine_pthread.h index d1810c812..cabb6ebd2 100644 --- a/include/threadengines/threadengine_pthread.h +++ b/include/threadengines/threadengine_pthread.h @@ -24,7 +24,8 @@ #pragma once #include <pthread.h> -#include "typedefs.h" + +class Thread; /** The ThreadEngine class has the responsibility of initialising * Thread derived classes. It does this by creating operating system diff --git a/include/threadengines/threadengine_win32.h b/include/threadengines/threadengine_win32.h index 2fdf1cb24..77999e541 100644 --- a/include/threadengines/threadengine_win32.h +++ b/include/threadengines/threadengine_win32.h @@ -24,7 +24,6 @@ #pragma once -#include "config.h" #include "base.h" class Thread; |