Skip to content

Commit

Permalink
Fix clang-format warning
Browse files Browse the repository at this point in the history
Signed-off-by: Andy Fingerhut <andy_fingerhut@alum.wustl.edu>
  • Loading branch information
jafingerhut committed Nov 10, 2024
1 parent 31f0b10 commit bd31e6b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions frontends/p4/duplicateActionControlPlaneNameCheck.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ const IR::Node *DuplicateActionControlPlaneNameCheck::postorder(IR::P4Action *ac
if (stack.empty()) {
name = absl::StrCat(".", name);
} else {
name = absl::StrCat(".", absl::StrJoin(stack, "."),
".", name);
name = absl::StrCat(".", absl::StrJoin(stack, "."), ".", name);
}
}
checkForDuplicateName(name, action);
Expand Down

0 comments on commit bd31e6b

Please sign in to comment.