diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-08-06 11:21:10 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-08-06 11:21:10 +0200 |
commit | 8ff6ef298a939422d86d6cc58bf611f3f5165d8e (patch) | |
tree | 6fcf18f26caabf5453c2d305f82afc751123f7dd /src | |
parent | e9629da3f2792c301add45cfc6eb16a11b21d4af (diff) | |
download | ODR-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.h | 1 |
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 { |