aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2018-08-06 11:21:10 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2018-08-06 11:21:10 +0200
commit8ff6ef298a939422d86d6cc58bf611f3f5165d8e (patch)
tree6fcf18f26caabf5453c2d305f82afc751123f7dd /src
parente9629da3f2792c301add45cfc6eb16a11b21d4af (diff)
downloadODR-SourceCompanion-8ff6ef298a939422d86d6cc58bf611f3f5165d8e.tar.gz
ODR-SourceCompanion-8ff6ef298a939422d86d6cc58bf611f3f5165d8e.tar.bz2
ODR-SourceCompanion-8ff6ef298a939422d86d6cc58bf611f3f5165d8e.zip
Add missing include for size_t
Diffstat (limited to 'src')
-rw-r--r--src/AACDecoder.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/AACDecoder.h b/src/AACDecoder.h
index 7f19cb9..6adae56 100644
--- a/src/AACDecoder.h
+++ b/src/AACDecoder.h
@@ -27,6 +27,7 @@
#include <fdk-aac/aacdecoder_lib.h>
#include <cstdint>
+#include <cstddef>
#include <vector>
class AACDecoder {