Skip to content

Commit 5e8f15c

Browse files
authored
Merge pull request #9120 from hzeller/feature-20251222-non-bracket-boost
boost is a vendored include; use in quotes not bracketed includes.
2 parents f7ced4d + c9a4a03 commit 5e8f15c

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/Exception-py.i

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44
#ifdef BAZEL
55
%{
66

7-
#include <boost/stacktrace.hpp>
87
#include <cstdlib>
98
#include <sstream>
109

10+
#include "boost/stacktrace/stacktrace.hpp"
1111
#include "utl/Logger.h"
1212
%}
1313
#else
1414
%{
15-
16-
#include <boost/stacktrace.hpp>
15+
1716
#include <cstdlib>
1817
#include <sstream>
1918

19+
#include "boost/stacktrace/stacktrace.hpp"
2020
#include "ord/OpenRoad.hh"
2121
#include "utl/Logger.h"
2222
%}

src/Exception.i

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
// Copied from OpenSTA/tcl/Exception.i
22
// Copyright (c) 2021, Parallax Software, Inc.
3-
//
3+
//
44
// This program is free software: you can redistribute it and/or modify
55
// it under the terms of the GNU General Public License as published by
66
// the Free Software Foundation, either version 3 of the License, or
77
// (at your option) any later version.
8-
//
8+
//
99
// This program is distributed in the hope that it will be useful,
1010
// but WITHOUT ANY WARRANTY; without even the implied warranty of
1111
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1212
// GNU General Public License for more details.
13-
//
13+
//
1414
// You should have received a copy of the GNU General Public License
1515
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1616

1717
%{
18-
#include <boost/stacktrace.hpp>
1918
#include <cstdlib>
2019
#include <new>
2120
#include <sstream>
2221

22+
#include "boost/stacktrace/stacktrace.hpp"
2323
#include "ord/OpenRoad.hh"
2424
#include "utl/Logger.h"
2525
%}

src/mpl/src/hier_rtlmp.cpp

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

66
#include <algorithm>
7-
#include <boost/polygon/polygon.hpp>
87
#include <cmath>
98
#include <cstdint>
109
#include <fstream>
@@ -26,6 +25,7 @@
2625
#include "SACoreHardMacro.h"
2726
#include "SACoreSoftMacro.h"
2827
#include "SimulatedAnnealingCore.h"
28+
#include "boost/polygon/polygon.hpp"
2929
#include "clusterEngine.h"
3030
#include "db_sta/dbNetwork.hh"
3131
#include "mpl-util.h"

0 commit comments

Comments
 (0)