Skip to content

Commit cd455ec

Browse files
committed
Fix some missing includes.
Signed-off-by: Henner Zeller <[email protected]>
1 parent 7d118f7 commit cd455ec

File tree

7 files changed

+11
-0
lines changed

7 files changed

+11
-0
lines changed

src/grt/src/fastroute/include/DataType.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#pragma once
55

66
#include <cstdint>
7+
#include <map>
78
#include <memory>
89
#include <ostream>
910
#include <string>

src/grt/src/fastroute/src/RSMT.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
#include <algorithm>
55
#include <cmath>
66
#include <cstdint>
7+
#include <map>
78
#include <tuple>
89
#include <vector>
910

1011
#include "AbstractFastRouteRenderer.h"
1112
#include "DataType.h"
1213
#include "FastRoute.h"
14+
#include "odb/geom.h"
1315
#include "utl/Logger.h"
1416

1517
namespace grt {

src/odb/test/cpp/Test3DBloxParser.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#include <iostream>
22
#include <string>
33

4+
#include "gtest/gtest.h"
45
#include "odb/3dblox.h"
56
#include "odb/db.h"
67
#include "odb/geom.h"

src/odb/test/cpp/TestDbNet.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#include <string>
2+
13
#include "gtest/gtest.h"
24
#include "odb/db.h"
35
#include "sta/Liberty.hh"

src/rsz/test/cpp/TestBufferRemoval.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
#include "gtest/gtest.h"
1818
#include "odb/db.h"
1919
#include "odb/dbSet.h"
20+
#include "odb/dbTypes.h"
21+
#include "odb/geom.h"
2022
#include "odb/lefin.h"
2123
#include "rsz/Resizer.hh"
2224
#include "sta/Corner.hh"

src/tst/include/tst/fixture.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
#include "db_sta/dbSta.hh"
1010
#include "gtest/gtest.h"
1111
#include "odb/db.h"
12+
#include "odb/dbTypes.h"
13+
#include "odb/geom.h"
1214
#include "sta/MinMax.hh"
1315
#include "tcl.h"
1416
#include "utl/Logger.h"

src/tst/src/fixture.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#include <stdexcept>
1111
#include <string>
1212

13+
#include "odb/db.h"
1314
#include "odb/lefin.h"
1415
#include "sta/MinMax.hh"
1516

0 commit comments

Comments
 (0)