Skip to content

Commit 15b15fd

Browse files
committed
Include Logger.h for utl::<prj>
... while at it also extViaModel. Breakdown: ``` src/cut/src/abc_library_factory.cpp: #include "utl/Logger.h" for utl::CUT src/cut/src/logic_extractor.cpp: #include "utl/Logger.h" for utl::CUT src/dft/src/cells/ScanCellFactory.cpp: #include "utl/Logger.h" for utl::DFT src/dft/src/utils/Utils.cpp: #include "utl/Logger.h" for utl::DFT src/drt/src/dr/FlexDR_conn.cpp: #include "utl/Logger.h" for utl::DRT src/drt/src/dr/FlexDR_init.cpp: #include "utl/Logger.h" for utl::DRT src/drt/src/dr/FlexDR_maze.cpp: #include "utl/Logger.h" for utl::DRT src/drt/src/frBaseTypes.h: #include "utl/Logger.h" for utl::DRT src/drt/src/gr/FlexGR.cpp: #include "utl/Logger.h" for utl::DRT src/drt/src/pa/FlexPA.cpp: #include "utl/Logger.h" for utl::DRT src/drt/src/pa/FlexPA_row_pattern.cpp: #include "utl/Logger.h" for utl::DRT src/fin/src/DensityFill.cpp: #include "utl/Logger.h" for utl::FIN src/grt/src/cugr/src/GridGraph.cpp: #include "utl/Logger.h" for utl::GRT src/grt/src/cugr/src/MazeRoute.cpp: #include "utl/Logger.h" for utl::GRT src/grt/src/cugr/src/PatternRoute.cpp: #include "utl/Logger.h" for utl::GRT src/gui/src/chartsWidget.cpp: #include "utl/Logger.h" for utl::GUI src/gui/src/scriptWidget.cpp: #include "utl/Logger.h" for utl::GUI src/odb/src/db/dbBlockage.cpp: #include "utl/Logger.h" for utl::ODB src/odb/src/db/dbObstruction.cpp: #include "utl/Logger.h" for utl::ODB src/odb/src/db/dbStream.cpp: #include "utl/Logger.h" for utl::ODB src/odb/src/db/dbTrackGrid.cpp: #include "utl/Logger.h" for utl::ODB src/pdn/src/sroute.cpp: #include "utl/Logger.h" for utl::PDN src/rcx/src/extmain_v2.cpp: #include "rcx/extViaModel.h" for rcx::extViaModel src/rcx/src/extRulesVia.cpp: #include "rcx/extViaModel.h" for rcx::extViaModel src/rcx/src/netRC.cpp: #include "rcx/extViaModel.h" for rcx::extViaModel src/upf/src/upf.cpp: #include "utl/Logger.h" for utl::UPF ``` Signed-off-by: Henner Zeller <[email protected]>
1 parent d84b4df commit 15b15fd

26 files changed

+26
-0
lines changed

src/cut/src/abc_library_factory.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#include "db_sta/dbNetwork.hh"
1515
#include "db_sta/dbSta.hh"
1616
#include "sta/TimingModel.hh"
17+
#include "utl/Logger.h"
1718
// Poor include definitions in ABC
1819
// clang-format off
1920
#include "misc/st/st.h"

src/cut/src/logic_extractor.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include "sta/NetworkClass.hh"
2121
#include "sta/PortDirection.hh"
2222
#include "sta/SearchPred.hh"
23+
#include "utl/Logger.h"
2324

2425
namespace cut {
2526

src/dft/src/cells/ScanCellFactory.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#include "sta/Liberty.hh"
2020
#include "sta/NetworkClass.hh"
2121
#include "sta/Sequential.hh"
22+
#include "utl/Logger.h"
2223

2324
namespace dft {
2425

src/dft/src/utils/Utils.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#include "sta/Liberty.hh"
1818
#include "sta/NetworkClass.hh"
1919
#include "sta/SdcClass.hh"
20+
#include "utl/Logger.h"
2021

2122
namespace dft::utils {
2223

src/drt/src/dr/FlexDR_conn.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#include "odb/geom.h"
3131
#include "omp.h"
3232
#include "triton_route/TritonRoute.h"
33+
#include "utl/Logger.h"
3334
#include "utl/exception.h"
3435

3536
namespace drt {

src/drt/src/dr/FlexDR_init.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#include "odb/dbTransform.h"
3434
#include "odb/geom.h"
3535
#include "odb/isotropy.h"
36+
#include "utl/Logger.h"
3637

3738
namespace drt {
3839

src/drt/src/dr/FlexDR_maze.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
#include "gc/FlexGC.h"
3939
#include "odb/dbTransform.h"
4040
#include "odb/geom.h"
41+
#include "utl/Logger.h"
4142

4243
namespace drt {
4344

src/drt/src/frBaseTypes.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#include "boost/serialization/base_object.hpp"
2020
#include "odb/dbTypes.h"
2121
#include "odb/geom.h"
22+
#include "utl/Logger.h"
2223

2324
namespace boost::serialization {
2425
class access;

src/drt/src/gr/FlexGR.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#include "odb/db.h"
2929
#include "odb/geom.h"
3030
#include "omp.h"
31+
#include "utl/Logger.h"
3132
#include "utl/exception.h"
3233

3334
namespace drt {

src/drt/src/pa/FlexPA.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#include "omp.h"
3131
#include "pa/AbstractPAGraphics.h"
3232
#include "serialization.h"
33+
#include "utl/Logger.h"
3334
#include "utl/exception.h"
3435

3536
BOOST_CLASS_EXPORT(drt::PinAccessJobDescription)

0 commit comments

Comments
 (0)