resampler.h: cstdint is a C++11 header; include stdint.h instead when not available

This commit is contained in:
tmkk 2019-02-23 14:46:09 +09:00
parent 46653afb87
commit b2fe66e242
1 changed files with 4 additions and 0 deletions

View File

@ -9,7 +9,11 @@
#include <cstring>
#include <cassert>
#if __cplusplus >= 201103L
#include <cstdint>
#else
#include <stdint.h>
#endif
#include <cmath>
class Resampler