Skip to content

Commit 266bd86

Browse files
authored
Merge pull request #8211 from hzeller/feature-20250903-boost-inc
More use of `""` instead of `<>` for vendored boost includes.
2 parents 7707ec4 + 7ae5584 commit 266bd86

File tree

7 files changed

+9
-10
lines changed

7 files changed

+9
-10
lines changed

src/ant/src/Polygon.hh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33

44
#pragma once
55

6-
#include <boost/functional/hash.hpp>
7-
#include <boost/polygon/polygon.hpp>
8-
96
#include "PinType.hh"
107
#include "ant/AntennaChecker.hh"
8+
#include "boost/functional/hash.hpp"
9+
#include "boost/polygon/polygon.hpp"
1110

1211
namespace ant {
1312

src/dpl/src/optimization/detailed_global.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
#include "detailed_global.h"
55

66
#include <algorithm>
7-
#include <boost/tokenizer.hpp>
87
#include <cmath>
98
#include <cstddef>
109
#include <cstdint>
1110
#include <cstdlib>
1211
#include <string>
1312
#include <vector>
1413

14+
#include "boost/tokenizer.hpp"
1515
#include "detailed_manager.h"
1616
#include "infrastructure/Objects.h"
1717
#include "objective/detailed_hpwl.h"

src/dpl/src/optimization/detailed_manager.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
#include "detailed_manager.h"
55

66
#include <algorithm>
7-
#include <boost/format.hpp>
8-
#include <boost/tokenizer.hpp>
97
#include <cmath>
108
#include <cstddef>
119
#include <iostream>
@@ -18,6 +16,8 @@
1816
#include <vector>
1917

2018
#include "PlacementDRC.h"
19+
#include "boost/format.hpp"
20+
#include "boost/tokenizer.hpp"
2121
#include "detailed_orient.h"
2222
#include "infrastructure/architecture.h"
2323
#include "infrastructure/detailed_segment.h"

src/dpl/src/optimization/detailed_mis.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
#include <lemon/smart_graph.h>
2626

2727
#include <algorithm>
28-
#include <boost/tokenizer.hpp>
2928
#include <cmath>
3029
#include <cstddef>
3130
#include <cstdint>
@@ -38,6 +37,7 @@
3837
#include <utility>
3938
#include <vector>
4039

40+
#include "boost/tokenizer.hpp"
4141
#include "detailed_manager.h"
4242
#include "infrastructure/architecture.h"
4343
#include "infrastructure/detailed_segment.h"

src/dpl/src/optimization/detailed_orient.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
#include "detailed_orient.h"
55

66
#include <algorithm>
7-
#include <boost/tokenizer.hpp>
87
#include <cstddef>
98
#include <cstdint>
109
#include <limits>
1110
#include <string>
1211
#include <vector>
1312

13+
#include "boost/tokenizer.hpp"
1414
#include "detailed_manager.h"
1515
#include "infrastructure/architecture.h"
1616
#include "infrastructure/detailed_segment.h"

src/dpl/src/optimization/detailed_random.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
// to improve a placement.
1010

1111
#include <algorithm>
12-
#include <boost/tokenizer.hpp>
1312
#include <cmath>
1413
#include <cstddef>
1514
#include <cstdlib>
1615
#include <stack>
1716
#include <string>
1817
#include <vector>
1918

19+
#include "boost/tokenizer.hpp"
2020
#include "util/utility.h"
2121
#include "utl/Logger.h"
2222
// For detailed improvement.

src/rsz/src/RepairSetup.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
// Copyright (c) 2022-2025, The OpenROAD Authors
33

44
#pragma once
5-
#include <boost/functional/hash.hpp>
65
#include <unordered_set>
76
#include <vector>
87

8+
#include "boost/functional/hash.hpp"
99
#include "db_sta/dbNetwork.hh"
1010
#include "db_sta/dbSta.hh"
1111
#include "rsz/Resizer.hh"

0 commit comments

Comments
 (0)