mirror of https://github.com/snes9xgit/snes9x.git
resampler.h: cstdint is a C++11 header; include stdint.h instead when not available
This commit is contained in:
parent
46653afb87
commit
b2fe66e242
|
@ -9,7 +9,11 @@
|
|||
|
||||
#include <cstring>
|
||||
#include <cassert>
|
||||
#if __cplusplus >= 201103L
|
||||
#include <cstdint>
|
||||
#else
|
||||
#include <stdint.h>
|
||||
#endif
|
||||
#include <cmath>
|
||||
|
||||
class Resampler
|
||||
|
|
Loading…
Reference in New Issue