Provide a better description for net mismatch with warning.

This commit is contained in:
Matthias Koefferlein 2019-07-09 20:29:35 +02:00
parent 1e3d62ca3a
commit 1fd069ca99
1 changed files with 2 additions and 0 deletions

View File

@ -517,6 +517,8 @@ std::string NetlistCrossReferenceModel::net_status_hint (const circuit_pair &cir
"Otherwise, look for the corresponding other net.\n" "Otherwise, look for the corresponding other net.\n"
"Net items not found in the reference netlist indicate additional connections.\n" "Net items not found in the reference netlist indicate additional connections.\n"
"Net items only found in the reference netlist indicate missing connections.")); "Net items only found in the reference netlist indicate missing connections."));
} else if (cps.second == db::NetlistCrossReference::MatchWithWarning) {
return tl::to_string (tr ("Nets match, but the choice was ambiguous. This may lead to mismatching nets in other places.\n"));
} }
return std::string (); return std::string ();
} }