Skip to content

Commit 1aec1f6

Browse files
committed
pad: correct const naming pattern
Signed-off-by: Peter Gadfort <[email protected]>
1 parent 06a8827 commit 1aec1f6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/pad/src/RDLRouter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1892,7 +1892,7 @@ RDLRouter::generateRoutingTargets(odb::dbNet* net) const
18921892
continue;
18931893
}
18941894

1895-
auto* prop = odb::dbBoolProperty::find(iterm, kRouteProperty_);
1895+
auto* prop = odb::dbBoolProperty::find(iterm, kRouteProperty);
18961896
if (prop && !prop->getValue()) {
18971897
debugPrint(logger_,
18981898
utl::PAD,

src/pad/src/RDLRouter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ class RDLRouter
248248
odb::dbNet* debug_net_{nullptr};
249249

250250
// Consts
251-
static constexpr const char* kRouteProperty_ = "RDL_ROUTE";
251+
static constexpr const char* kRouteProperty = "RDL_ROUTE";
252252
};
253253

254254
} // namespace pad

0 commit comments

Comments
 (0)