requirers -> requireds for c++20

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2023-03-24 09:55:52 -07:00
parent 8121195a5e
commit 1dde1f1014
1 changed files with 4 additions and 4 deletions

View File

@ -5947,15 +5947,15 @@ requireds_clk(const RiseFall *rf,
const RiseFall *clk_rf) const RiseFall *clk_rf)
{ {
Sta *sta = Sta::sta(); Sta *sta = Sta::sta();
FloatSeq requires; FloatSeq requireds;
const ClockEdge *clk_edge = nullptr; const ClockEdge *clk_edge = nullptr;
if (clk) if (clk)
clk_edge = clk->edge(clk_rf); clk_edge = clk->edge(clk_rf);
for (auto path_ap : sta->corners()->pathAnalysisPts()) { for (auto path_ap : sta->corners()->pathAnalysisPts()) {
requires.push_back(delayAsFloat(sta->vertexRequired(self, rf, clk_edge, requireds.push_back(delayAsFloat(sta->vertexRequired(self, rf, clk_edge,
path_ap))); path_ap)));
} }
return requires; return requireds;
} }
StringSeq StringSeq