Because
[code]
AudioProcessorGraph& g=filterGraph.getGraph();
for (int i=0; i<g.getNumConnections(); i++)
{
if (!g.isConnectionLegal(g.getConnection(i)))[/code]
is not possible without const_cast
please change
into
and
into
Because
[code]
AudioProcessorGraph& g=filterGraph.getGraph();
for (int i=0; i<g.getNumConnections(); i++)
{
if (!g.isConnectionLegal(g.getConnection(i)))[/code]
is not possible without const_cast
please change
into
and
into
Sure, no problem, cheers!