AsyncCallInvoker memory leak

*** Leaked objects detected: 1 instance(s) of class AsyncCallInvoker
JUCE Assertion failure in memory/juce_LeakedObjectDetector.h:88
tested on Mushroom Generator
can't build it. i'm getting:
class "rosic::BreakpointModulator" has no member "setStrategy" class "rosic::BreakpointModulator" has no member "rebuildCursorStrategyBuffer"
btw.: are you going to fix your compiler warnings? most of them are implicit type conversion warnings which are trivial to fix by adding explicit conversion. i.e. instead of
int myInt = myDouble;
write
int myInt = (int)myDouble;
or
int myInt = int(myDouble);
for example. you will sometimes have to take care of using parentheses correctly to apply the conversion to the final result in expressions. for example:
int myInt = (int)myDouble1 + myDouble2;
will still trigger it. you will need:
int myInt = int(myDouble1 + myDouble2);
try testing with prettyscope. working on warnings now.
ok - but what should i do? i haven't seen this yet
huh, I think a few issues were solved somehow.
haha! what? how? which ones?
maybe just this one.
ok - good news anyway
...after fixing the warnings?
nevermind.......... no issues solved.
these issues seem to be intermittent
this smells like threading issues. these are the hardest nuts to debug. but what is a situation where this may occur?
don't know yet, focus on the issues that you can solve. im trying to figure this out.
sliders are messed up, i think because of the macro parameter stuff. moving a slider forward then back, you see the slider move forward for the first pixel of movement. ill make a new thread about this. But I think you're not finished with the macro stuff. Slider should not reflect current macro value.
ill make a new thread about this. But I think you're not finished with the macro stuff. Slider should not reflect current macro value.
ok, do that. i actually think, it should, but let's discuss this there then
close for now
ok this is happening consistently now, build any of my plugins, VST version. But it's not a show stopper, so it's fine for now.