Compiling Just an Empty Clone Container Fails
-
@clevername27 said in Compiling Just an Empty Clone Container Fails:
Structs don't have methods
They can in C++ and do in the HISE codebase.
-
@d-healey You're absolutely right.
-
@clevername27 said in Compiling Just an Empty Clone Container Fails:
When you say struct, do you mean class?
Yeah
clone_base
is a struct. It has a few methods, but no member named ‘isPolyphonic’. I'm assuming there is a wrapper class somewhere trying to cast aclone_base
into a class that has aisPolyphonic()
function.Setting the default return value of
NodeBase::isPolyphonic()
from false to true is an interesting lead. Looking for subclasses of NodeBase now to see how it relates to theclone_base
struct.