faust
faust copied to clipboard
Compile error
This code does not compile anymore after https://github.com/grame-cncm/faust/commit/bb1637c72c8827b1ab3cb3b5d8c37d6c935ffb30.
This reduce case :
process = @(octave)
with {
octave = qLog <: (_>=0)*(1<<(_));
qLog(x) = ba.tabulate(1, log, 1024, 10, 20000, x).val;
};
returns a different interval value for octave after the commit.
Could be seen with:
process = lowest(quantize), highest(quantize)
with {
octave = qLog <: (_>=0)*(1<<(_));
qLog(x) = ba.tabulate(1, log, 1024, 10, 20000, x).val;
};