Skip to content

Commit

Permalink
Enforcing naming consistency and sorting capnp factories
Browse files Browse the repository at this point in the history
  • Loading branch information
hs-apotell committed Sep 16, 2023
1 parent 7b65d5a commit 6f5d49b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/DesignCompile/ElaborationStep.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ void ElaborationStep::swapTypespecPointersInUhdm(
} else if (ports* ex = any_cast<ports*>(var)) {
ex->Typespec(replace(ex->Typespec(), typespecSwapMap));
} else if (prop_formal_decl* ex = any_cast<prop_formal_decl*>(var)) {
ex->VpiTypespec(replace(ex->VpiTypespec(), typespecSwapMap));
ex->Typespec(replace(ex->Typespec(), typespecSwapMap));
} else if (class_obj* ex = any_cast<class_obj*>(var)) {
if (ex->Typespecs()) {
for (auto& tps : *ex->Typespecs()) {
Expand Down
2 changes: 1 addition & 1 deletion third_party/UHDM

0 comments on commit 6f5d49b

Please sign in to comment.