aboutsummaryrefslogtreecommitdiffstats
path: root/al
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2021-04-27 23:03:24 -0700
committerChris Robinson <[email protected]>2021-04-27 23:03:24 -0700
commit2f0e37bc245c0c310f40fe7a97687549324d3d48 (patch)
tree94c6d332f614292585cc3314eb216f62efbfa2ea /al
parent1195bba833375920b31f60f5d09e64ca9a5d0ce8 (diff)
Add back some more missing includes
Diffstat (limited to 'al')
-rw-r--r--al/buffer.cpp1
-rw-r--r--al/effects/chorus.cpp2
-rw-r--r--al/effects/fshifter.cpp2
-rw-r--r--al/effects/modulator.cpp2
-rw-r--r--al/effects/vmorpher.cpp2
-rw-r--r--al/source.cpp1
6 files changed, 10 insertions, 0 deletions
diff --git a/al/buffer.cpp b/al/buffer.cpp
index aa997130..26fe863e 100644
--- a/al/buffer.cpp
+++ b/al/buffer.cpp
@@ -35,6 +35,7 @@
#include <mutex>
#include <new>
#include <numeric>
+#include <stdexcept>
#include <utility>
#include "AL/al.h"
diff --git a/al/effects/chorus.cpp b/al/effects/chorus.cpp
index 704d7230..2466d97e 100644
--- a/al/effects/chorus.cpp
+++ b/al/effects/chorus.cpp
@@ -1,6 +1,8 @@
#include "config.h"
+#include <stdexcept>
+
#include "AL/al.h"
#include "AL/efx.h"
diff --git a/al/effects/fshifter.cpp b/al/effects/fshifter.cpp
index 63621aa6..4aa860a2 100644
--- a/al/effects/fshifter.cpp
+++ b/al/effects/fshifter.cpp
@@ -1,6 +1,8 @@
#include "config.h"
+#include <stdexcept>
+
#include "AL/al.h"
#include "AL/efx.h"
diff --git a/al/effects/modulator.cpp b/al/effects/modulator.cpp
index 4c4ee485..d8a1bed6 100644
--- a/al/effects/modulator.cpp
+++ b/al/effects/modulator.cpp
@@ -1,6 +1,8 @@
#include "config.h"
+#include <stdexcept>
+
#include "AL/al.h"
#include "AL/efx.h"
diff --git a/al/effects/vmorpher.cpp b/al/effects/vmorpher.cpp
index 076776a9..1b4710ff 100644
--- a/al/effects/vmorpher.cpp
+++ b/al/effects/vmorpher.cpp
@@ -1,6 +1,8 @@
#include "config.h"
+#include <stdexcept>
+
#include "AL/al.h"
#include "AL/efx.h"
diff --git a/al/source.cpp b/al/source.cpp
index 67cfacb6..05c42f05 100644
--- a/al/source.cpp
+++ b/al/source.cpp
@@ -37,6 +37,7 @@
#include <mutex>
#include <new>
#include <numeric>
+#include <stdexcept>
#include <thread>
#include <utility>