mirror of
https://github.com/verilator/verilator.git
synced 2026-08-30 01:38:21 +02:00
Internals: clangtidy cleanups. No functional change intended (#7343)
This commit is contained in:
+2
-2
@@ -68,8 +68,8 @@ void V3GraphVertex::unlinkDelete(V3Graph* graphp) {
|
||||
|
||||
void V3GraphVertex::rerouteEdges(V3Graph* graphp) {
|
||||
// Make new edges for each from/to pair
|
||||
for (V3GraphEdge& iedge : inEdges()) {
|
||||
for (V3GraphEdge& oedge : outEdges()) {
|
||||
for (const V3GraphEdge& iedge : inEdges()) {
|
||||
for (const V3GraphEdge& oedge : outEdges()) {
|
||||
new V3GraphEdge{graphp, iedge.fromp(), oedge.top(),
|
||||
std::min(iedge.weight(), oedge.weight()),
|
||||
iedge.cutable() && oedge.cutable()};
|
||||
|
||||
Reference in New Issue
Block a user