Skip to content

Commit 57817e5

Browse files
committed
[#80791] fix cases of misaligned tabs/spaces
1 parent 0c5b3b4 commit 57817e5

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

search/ReportPath.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3190,7 +3190,7 @@ ReportPath::hasExtInputDriver(const Pin *pin,
31903190
void
31913191
ReportPath::reportInputExternalDelay(const Path *first_path,
31923192
float time_offset,
3193-
const TimingArc *end_check_arc) const
3193+
const TimingArc *end_check_arc) const
31943194
{
31953195
const Pin *first_pin = first_path->pin(graph_);
31963196
if (!pathFromClkPin(first_path, first_pin)) {

search/ReportPath.hh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ protected:
243243
Arrival clk_insertion,
244244
Arrival clk_latency,
245245
bool is_path_delay,
246-
const TimingArc *end_check_arc) const;
246+
const TimingArc *end_check_arc) const;
247247
bool reportGenClkSrcPath(const Path *clk_path,
248248
const Clock *clk,
249249
const RiseFall *clk_rf,
@@ -308,26 +308,26 @@ protected:
308308
const PathExpanded &expanded,
309309
bool clk_used_as_data,
310310
float time_offset,
311-
const TimingArc *end_check_arc) const;
311+
const TimingArc *end_check_arc) const;
312312
void reportPath2(const Path *path,
313313
const PathExpanded &expanded,
314314
bool clk_used_as_data,
315315
float time_offset,
316-
const TimingArc *end_check_arc) const;
316+
const TimingArc *end_check_arc) const;
317317
void reportPath3(const Path *path,
318318
const PathExpanded &expanded,
319319
bool clk_used_as_data,
320320
bool report_clk_path,
321321
Arrival prev_time,
322322
float time_offset,
323-
const TimingArc *end_check_arc) const;
323+
const TimingArc *end_check_arc) const;
324324
void reportPath4(const Path *path,
325325
const PathExpanded &expanded,
326326
bool clk_used_as_data,
327327
bool skip_first_path,
328328
bool skip_last_path,
329329
float time_offset,
330-
const TimingArc *end_check_arc) const;
330+
const TimingArc *end_check_arc) const;
331331
void reportPath5(const Path *path,
332332
const PathExpanded &expanded,
333333
size_t path_first_index,
@@ -336,7 +336,7 @@ protected:
336336
bool report_clk_path,
337337
Arrival prev_time,
338338
float time_offset,
339-
const TimingArc *end_check_arc) const;
339+
const TimingArc *end_check_arc) const;
340340
void reportHierPinsThru(const Path *path) const;
341341
void reportInputExternalDelay(const Path *path,
342342
float time_offset,

0 commit comments

Comments
 (0)