With the recently released Pd-0.55, pd-lyonpotpourri 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-lyonpotpourri uses type float in the following files:
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)
With the recently released Pd-0.55, pd-lyonpotpourri 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 typet_float
. Unfortunately, pd-lyonpotpourri uses typefloat
in the following files:the solution is simply to switch to using
t_float