Hello List,
I frequently get the message "warning: ***: multiply defined"
where *** is a send~ name.
What exactly does this mean?
David
. . David McCallum . Music wants to be free . http://mentalfloss.ca/sintheta/ .
David McCallum 8dngm@qlink.queensu.ca wrote:
Hello List,
I frequently get the message "warning: ***: multiply defined"
where *** is a send~ name.
What exactly does this mean?
Hello
It means that you have more than one send~ with the same name.
From the documentation: Any number of receives may be associated with one send~ but it is an error to have two send~s of the same name.
mik
It means that you have more than one send~ with the same name.
From the documentation: Any number of receives may be associated with one
send~ but it is an error to have two send~s of the same >name.
A solution to the problem is to use throw~ and catch~ instead. Multiple throw~s can send to the same catch~er.
Cheers Soeren