ericlyon / pd-fftease

FFTease 3.0 for Pd
Other
18 stars 4 forks source link

FTBFS with Pd>=0.55 #51

Closed umlaeute closed 3 months ago

umlaeute commented 4 months ago

With the recently released Pd-0.55, pd-fftease no longer compiles (at least not for Pd64)

the reason is, that Pd is now stricter when it comes to types, and uses a static assert to ensure that the signal holder member in CLASS_MAINSIGNALIN is of type t_float. Unfortunately, pd-fftease uses type float in the following files:

the solution is simply to switch to using t_float

umlaeute commented 4 months ago

in general, you should use t_float instead of float whenever possible (which i think is everywhere except for specialized standalone functions like the penrose generators)

umlaeute commented 4 months ago

related to https://github.com/ericlyon/pd-lyonpotpourri/issues/26