summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/config.cpp3
-rw-r--r--src/threadengine.cpp2
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);