Fixed OSX build error
This commit is contained in:
parent
f074b57094
commit
eea41dbc6f
|
@ -755,7 +755,7 @@ void CN_CONNECTIVITY_ALGO::propagateConnections()
|
||||||
else if( cluster->IsOrphaned() )
|
else if( cluster->IsOrphaned() )
|
||||||
{
|
{
|
||||||
wxLogTrace( "CN", "Skipping orphaned cluster %p [net: %s]\n", cluster.get(),
|
wxLogTrace( "CN", "Skipping orphaned cluster %p [net: %s]\n", cluster.get(),
|
||||||
(const char*) cluster->OriginNetName() );
|
(const char*) cluster->OriginNetName().c_str() );
|
||||||
}
|
}
|
||||||
else if( cluster->HasValidNet() )
|
else if( cluster->HasValidNet() )
|
||||||
{
|
{
|
||||||
|
@ -774,7 +774,7 @@ void CN_CONNECTIVITY_ALGO::propagateConnections()
|
||||||
|
|
||||||
if( n_changed )
|
if( n_changed )
|
||||||
wxLogTrace( "CN", "Cluster %p : net : %d %s\n", cluster.get(),
|
wxLogTrace( "CN", "Cluster %p : net : %d %s\n", cluster.get(),
|
||||||
cluster->OriginNet(), (const char*) cluster->OriginNetName() );
|
cluster->OriginNet(), (const char*) cluster->OriginNetName().c_str() );
|
||||||
else
|
else
|
||||||
wxLogTrace( "CN", "Cluster %p : nothing to propagate\n", cluster.get() );
|
wxLogTrace( "CN", "Cluster %p : nothing to propagate\n", cluster.get() );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue