aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Pöschel <github@basicmaster.de>2016-04-15 18:52:33 +0200
committerStefan Pöschel <github@basicmaster.de>2016-04-15 18:52:33 +0200
commit42546c26517013fc0df6a47743c7734a1ea9ecf8 (patch)
tree5439960eba97f847cb61d046f7ab7455f17bfe86
parent019f76ccfac6df7589ecc2da98ee9eb79b7a55f4 (diff)
downloadfdk-aac-dabplus-42546c26517013fc0df6a47743c7734a1ea9ecf8.tar.gz
fdk-aac-dabplus-42546c26517013fc0df6a47743c7734a1ea9ecf8.tar.bz2
fdk-aac-dabplus-42546c26517013fc0df6a47743c7734a1ea9ecf8.zip
Fix missing <thread> include
The missing include broke the build process on some systems (e.g. Travis CI).
-rw-r--r--src/dabplus-enc.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dabplus-enc.cpp b/src/dabplus-enc.cpp
index 757c300..81eb24b 100644
--- a/src/dabplus-enc.cpp
+++ b/src/dabplus-enc.cpp
@@ -35,6 +35,7 @@ extern "C" {
#include <vector>
#include <deque>
#include <chrono>
+#include <thread>
#include <string>
#include <getopt.h>
#include <cstdio>