free-audio / clap

Audio Plugin API
https://cleveraudio.org/
MIT License
1.77k stars 100 forks source link

Incompatible with C++98 #137

Closed falkTX closed 2 years ago

falkTX commented 2 years ago

Hi, the file in https://github.com/free-audio/clap/blob/main/include/clap/private/std.h includes cstdint in C++ mode, but this file is not properly available if building with -std=c++98.

abique commented 2 years ago

Hi, Thank you for finding out. Is that a problem? I guess it is just a matter of including stdint.h in that case.

falkTX commented 2 years ago

Yeah we need to use old stdint.h for C++98 builds (or older, not sure if that is a thing)