Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Beatrici <davidebeatrici@gmail.com>2019-09-12 23:08:39 +0300
committerDavide Beatrici <davidebeatrici@gmail.com>2019-09-12 23:08:39 +0300
commit15831dbca85dd906edbad2bfff2b147527a456e2 (patch)
tree34bd1c4db9b95748d263aea811e849dec7e5525c /3rdparty/smallft-src
parente29897c784f546dc8c7150811994663818911608 (diff)
Add missing includes for "no-pch" build
This commit adds all the missing includes when the PCH header is not used. Also, some includes are reordered and/or made consistent (e.g. "#include <QtEndian>" -> "#include <QtCore/QtEndian>").
Diffstat (limited to '3rdparty/smallft-src')
-rw-r--r--3rdparty/smallft-src/smallft.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/3rdparty/smallft-src/smallft.cpp b/3rdparty/smallft-src/smallft.cpp
index 94c5272f4..210590f90 100644
--- a/3rdparty/smallft-src/smallft.cpp
+++ b/3rdparty/smallft-src/smallft.cpp
@@ -40,6 +40,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "smallft.h"
+#include <cmath>
+#include <cstdlib>
+#include <cstring>
+
static void drfti1(int n, float *wa, int *ifac) {
static int ntryh[4] = { 4,2,3,5 };
static float tpi = 6.28318530717958648f;