LancePutnam / Gamma

Generic (Sound) Synthesis Library
Other
453 stars 54 forks source link

error C3861: 'uint32_t': identifier not found #41

Open mavavilj opened 8 years ago

mavavilj commented 8 years ago

42 The following bug occurs when including

https://github.com/AlloSphere-Research-Group/Gamma (simplegamma branch) with https://github.com/mbrucher/AudioTK using VS2013 (platform toolkit v120).

So,


#include < ATK/Core/InPointerFilter.h >
#include < ATK/Core/OutPointerFilter.h >
#include < ATK/Dynamic/AttackReleaseFilter.h >
#include < ATK/Dynamic/PowerFilter.h >
#include < ATK/EQ/TimeVaryingSecondOrderFilter.h >

#include "Gamma/Gamma.h"
#include "Gamma/DFT.h"

and compiling produces the errors:

Error 28 error C3861: 'uint32_t': identifier not found c:\developer\libs_cpp\gamma-simplegamma\gamma\scl.h 744 1 MyPlug-vst2 Error 27 error C3861: 'int32_t': identifier not found c:\developer\libs_cpp\gamma-simplegamma\gamma\scl.h 602 1 MyPlug-vst2 Error 29 error C3861: 'int32_t': identifier not found c:\developer\libs_cpp\gamma-simplegamma\gamma\scl.h 1055 1 MyPlug-vst2 Error 30 error C3861: 'int32_t': identifier not found c:\developer\libs_cpp\gamma-simplegamma\gamma\scl.h 1176 1 MyPlug-vst2 Error 31 error C3861: 'int32_t': identifier not found c:\developer\libs_cpp\gamma-simplegamma\gamma\strategy.h 519 1 MyPlug-vst2 Error 34 error C3861: 'int32_t': identifier not found c:\developer\libs_cpp\gamma-simplegamma\gamma\tbl.h 659 1 MyPlug-vst2 Error 5 error C2371: 'uint32_t' : redefinition; different basic types c:\developer\libs_cpp\gamma-simplegamma\gamma\pstdint.h 392 1 MyPlug-vst2 Error 12 error C2371: 'uint_fast16_t' : redefinition; different basic types c:\developer\libs_cpp\gamma-simplegamma\gamma\pstdint.h 634 1 MyPlug-vst2 Error 7 error C2371: 'int32_t' : redefinition; different basic types c:\developer\libs_cpp\gamma-simplegamma\gamma\pstdint.h 422 1 MyPlug-vst2 Error 11 error C2371: 'int_fast16_t' : redefinition; different basic types c:\developer\libs_cpp\gamma-simplegamma\gamma\pstdint.h 633 1 MyPlug-vst2

mbrucher commented 8 years ago

Related to #41, seems like the inclusion of cstdint screws up the Gamma headers.