Skip to content

Commit 68e1b97

Browse files
committed
Fix missing includes for a few symbols.
Signed-off-by: Henner Zeller <[email protected]>
1 parent d31e6ad commit 68e1b97

File tree

102 files changed

+108
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+108
-0
lines changed

src/dpl/src/Opendp.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#include "boost/geometry/geometry.hpp"
1818
#include "dpl/OptMirror.h"
1919
#include "graphics/DplObserver.h"
20+
#include "infrastructure/Coordinates.h"
2021
#include "infrastructure/Grid.h"
2122
#include "infrastructure/Objects.h"
2223
#include "infrastructure/Padding.h"

src/dpl/src/Place.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
#include "boost/random/uniform_int_distribution.hpp"
2323
#include "dpl/Opendp.h"
2424
#include "graphics/DplObserver.h"
25+
#include "infrastructure/Coordinates.h"
2526
#include "infrastructure/Grid.h"
2627
#include "infrastructure/Objects.h"
2728
#include "infrastructure/Padding.h"

src/dpl/src/PlacementDRC.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#include <set>
66
#include <string>
77

8+
#include "dpl/Opendp.h"
89
#include "infrastructure/Grid.h"
910
#include "infrastructure/Objects.h"
1011
#include "infrastructure/Padding.h"

src/dpl/src/PlacementDRC.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#include <unordered_map>
55
#include <vector>
66

7+
#include "dpl/Opendp.h"
78
#include "infrastructure/Coordinates.h"
89

910
namespace odb {

src/dpl/src/infrastructure/Grid.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#include "boost/icl/interval_map.hpp"
1818
#include "dpl/Opendp.h"
1919
#include "odb/db.h"
20+
#include "odb/dbTypes.h"
2021
#include "odb/geom.h"
2122
#include "odb/isotropy.h"
2223

src/dpl/src/infrastructure/Objects.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
#include <string>
99
#include <vector>
1010

11+
#include "dpl/Opendp.h"
12+
#include "odb/dbTypes.h"
1113
#include "odb/geom.h"
1214

1315
namespace dpl {

src/dpl/src/infrastructure/Objects.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
#include "Coordinates.h"
1111
#include "dpl/Opendp.h"
12+
#include "odb/dbTypes.h"
1213
#include "odb/geom.h"
1314

1415
namespace odb {

src/dpl/src/infrastructure/Padding.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#include "Padding.h"
55

66
#include "Objects.h"
7+
#include "dpl/Opendp.h"
78

89
namespace dpl {
910

src/dpl/src/infrastructure/architecture.cxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
#include "Objects.h"
1515
#include "Padding.h"
16+
#include "infrastructure/Coordinates.h"
1617
#include "network.h"
1718
#include "odb/db.h"
1819
#include "odb/dbTransform.h"

src/dpl/src/infrastructure/architecture.h

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

1212
#include "Coordinates.h"
13+
#include "dpl/Opendp.h"
1314
#include "odb/dbTypes.h"
1415
#include "odb/geom.h"
1516
namespace dpl {

0 commit comments

Comments
 (0)