From b2fe66e24227a10ad0c08c25be85746578f6f33e Mon Sep 17 00:00:00 2001 From: tmkk Date: Sat, 23 Feb 2019 14:46:09 +0900 Subject: [PATCH] resampler.h: cstdint is a C++11 header; include stdint.h instead when not available --- apu/resampler.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apu/resampler.h b/apu/resampler.h index 3ff942fe..fa3a5696 100644 --- a/apu/resampler.h +++ b/apu/resampler.h @@ -9,7 +9,11 @@ #include #include +#if __cplusplus >= 201103L #include +#else +#include +#endif #include class Resampler