Skip to content

Commit 350c8bc

Browse files
authored
Merge pull request #8799 from hzeller/feature-20251105-fix-inc
Fix a couple of missing includes.
2 parents 87dd715 + 5a9393d commit 350c8bc

File tree

16 files changed

+37
-0
lines changed

16 files changed

+37
-0
lines changed

src/dbSta/src/dbSta.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
#include "sta/PatternMatch.hh"
4242
#include "sta/ReportTcl.hh"
4343
#include "sta/Sdc.hh"
44+
#include "sta/Sta.hh"
4445
#include "sta/StaMain.hh"
4546
#include "sta/Units.hh"
4647
#include "utl/Logger.h"

src/est/include/est/EstimateParasitics.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#include "grt/GlobalRouter.h"
2020
#include "odb/db.h"
2121
#include "odb/geom.h"
22+
#include "sta/Corner.hh"
2223
#include "sta/Delay.hh"
2324
#include "sta/MinMax.hh"
2425
#include "sta/NetworkClass.hh"

src/est/src/EstimateParasitics.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#include "odb/dbSet.h"
2727
#include "odb/dbShape.h"
2828
#include "odb/dbTypes.h"
29+
#include "odb/geom.h"
2930
#include "sta/ArcDelayCalc.hh"
3031
#include "sta/Corner.hh"
3132
#include "sta/DcalcAnalysisPt.hh"

src/gpl/src/graphicsImpl.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
#include <memory>
1313
#include <optional>
1414
#include <string>
15+
#include <string_view>
1516
#include <utility>
1617
#include <vector>
1718

src/gpl/src/graphicsImpl.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
#include <cstddef>
77
#include <limits>
88
#include <memory>
9+
#include <optional>
910
#include <string>
11+
#include <string_view>
1012
#include <utility>
1113
#include <vector>
1214

src/grt/src/heatMapRudy.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#include "odb/db.h"
1515
#include "odb/dbTypes.h"
1616
#include "odb/geom.h"
17+
#include "utl/Logger.h"
1718

1819
namespace grt {
1920

src/mpl/src/hier_rtlmp.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#include "mpl-util.h"
3131
#include "object.h"
3232
#include "odb/db.h"
33+
#include "odb/geom.h"
3334
#include "odb/geom_boost.h"
3435
#include "odb/util.h"
3536
#include "par/PartitionMgr.h"

src/odb/src/db/dbModBTerm.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
#include "dbTable.hpp"
1717
#include "odb/db.h"
1818
// User Code Begin Includes
19+
#include <cstdlib>
1920
#include <string>
2021

2122
#include "odb/dbBlockCallBackObj.h"

src/odb/src/db/dbModITerm.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
#include "dbTable.hpp"
1616
#include "odb/db.h"
1717
// User Code Begin Includes
18+
#include <cassert>
19+
#include <cstdlib>
20+
#include <cstring>
1821
#include <string>
1922

2023
#include "odb/dbBlockCallBackObj.h"

src/odb/src/db/dbModNet.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@
1818
#include "dbVector.h"
1919
#include "odb/db.h"
2020
// User Code Begin Includes
21+
#include <cassert>
22+
#include <cstdlib>
23+
#include <cstring>
2124
#include <set>
25+
#include <string>
2226
#include <vector>
2327

2428
#include "dbModuleModNetBTermItr.h"

0 commit comments

Comments
 (0)