diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2021-04-24 12:09:18 -0700 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2021-04-24 12:09:18 -0700 |
commit | f10cc1e1acb11bbabd5a16b62e0d435d6b1e9337 (patch) | |
tree | f94e7152e479c633cc539c2d439d74226a428fe1 | |
parent | fc7d55be4b468c14c2f99d112a56b6c831c7244b (diff) |
Update some more includes
-rw-r--r-- | core/hrtf.cpp | 4 | ||||
-rw-r--r-- | core/hrtf.h | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/core/hrtf.cpp b/core/hrtf.cpp index 0a065be2..e0ab8f0a 100644 --- a/core/hrtf.cpp +++ b/core/hrtf.cpp @@ -11,12 +11,10 @@ #include <cstdint> #include <cstdio> #include <cstring> -#include <functional> #include <fstream> #include <iterator> #include <memory> #include <mutex> -#include <new> #include <numeric> #include <type_traits> #include <utility> @@ -33,8 +31,10 @@ #include "helpers.h" #include "logging.h" #include "math_defs.h" +#include "mixer/hrtfdefs.h" #include "opthelpers.h" #include "polyphase_resampler.h" +#include "vector.h" namespace { diff --git a/core/hrtf.h b/core/hrtf.h index f2dfc832..61e5bada 100644 --- a/core/hrtf.h +++ b/core/hrtf.h @@ -12,7 +12,6 @@ #include "atomic.h" #include "ambidefs.h" #include "bufferline.h" -#include "filters/splitter.h" #include "mixer/hrtfdefs.h" #include "intrusive_ptr.h" #include "vector.h" |