Commit 9f1e88b
committed
Fixed coverity CID 1619523 issue.
_____________________________________________________________________________________________
*** CID 1619523: Uninitialized members (UNINIT_CTOR)
/src/rsz/src/Rebuffer.cc: 89 in rsz::Rebuffer::Rebuffer(rsz::Resizer *, est::EstimateParasitics *)()
83 }
84
85 Rebuffer::Rebuffer(Resizer* resizer,
86 est::EstimateParasitics* estimate_parasitics)
87 : resizer_(resizer), estimate_parasitics_(estimate_parasitics)
88 {
>>> CID 1619523: Uninitialized members (UNINIT_CTOR)
>>> Non-static class member "inserted_count_" is not initialized in this constructor nor in any functions that it calls.
89 }
90
91 void Rebuffer::annotateLoadSlacks(BnetPtr& tree, Vertex* root_vertex)
92 {
93 for (auto rf_index : RiseFall::rangeIndex()) {
94 arrival_paths_[rf_index] = nullptr;
Signed-off-by: Jaehyun Kim <[email protected]>1 parent 190ecfc commit 9f1e88b
1 file changed
+13
-13
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
139 | 139 | | |
140 | 140 | | |
141 | 141 | | |
142 | | - | |
143 | | - | |
| 142 | + | |
| 143 | + | |
144 | 144 | | |
145 | 145 | | |
146 | 146 | | |
147 | 147 | | |
148 | | - | |
149 | | - | |
150 | | - | |
151 | | - | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
152 | 152 | | |
153 | 153 | | |
154 | | - | |
| 154 | + | |
155 | 155 | | |
156 | | - | |
157 | | - | |
| 156 | + | |
| 157 | + | |
158 | 158 | | |
159 | | - | |
160 | | - | |
161 | | - | |
162 | | - | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
163 | 163 | | |
164 | 164 | | |
165 | 165 | | |
| |||
0 commit comments