diff options
author | Sadie Powell <sadie@witchery.services> | 2024-03-09 13:41:21 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-03-09 22:22:56 +0000 |
commit | ef37daf44a97e7ff715b61eadf83f1478365a720 (patch) | |
tree | 54b5a3abb67c5b355245a2686ea1ccd5c0d93134 /src | |
parent | 39d288f99f878fcaa0f43d659815686fbee667f5 (diff) |
Clean up the services.h includes.
Diffstat (limited to 'src')
-rw-r--r-- | src/config.cpp | 3 | ||||
-rw-r--r-- | src/threadengine.cpp | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/config.cpp b/src/config.cpp index b6c7ff4cf..ca36bea7d 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -17,6 +17,9 @@ #include "channels.h" #include "hashcomp.h" +#include <stack> +#include <stdexcept> + using Configuration::File; using Configuration::Conf; using Configuration::Internal::Block; diff --git a/src/threadengine.cpp b/src/threadengine.cpp index 7e1e76693..08765c4e4 100644 --- a/src/threadengine.cpp +++ b/src/threadengine.cpp @@ -13,6 +13,8 @@ #include "threadengine.h" #include "anope.h" +#include <stdexcept> + static void *entry_point(void *parameter) { Thread *thread = static_cast<Thread *>(parameter); |