Skip to content

Commit

Permalink
Fix missing includes in tapcell.{h,cpp}
Browse files Browse the repository at this point in the history
Fixed 20 misc-include-cleaner issues. Only 12199 to go :)

Signed-off-by: Henner Zeller <[email protected]>
  • Loading branch information
hzeller committed Dec 24, 2024
1 parent 32f3566 commit 05a1365
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
8 changes: 8 additions & 0 deletions src/tap/include/tap/tapcell.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,16 @@
///////////////////////////////////////////////////////////////////////////////

#include <boost/polygon/polygon.hpp>
#include <map>
#include <optional>
#include <set>
#include <string>
#include <utility>
#include <vector>

#include "odb/db.h"
#include "odb/dbTypes.h"
#include "odb/geom.h"
#include "odb/geom_boost.h"

namespace ord {
Expand Down
7 changes: 5 additions & 2 deletions src/tap/src/tapcell.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,20 @@
#include "tap/tapcell.h"

#include <algorithm>
#include <array>
#include <cmath>
#include <cstddef>
#include <map>
#include <optional>
#include <string>
#include <utility>
#include <vector>

#include "odb/db.h"
#include "odb/dbTypes.h"
#include "odb/util.h"
#include "ord/OpenRoad.hh"
#include "sta/StaMain.hh"
#include "utl/Logger.h"
#include "utl/algorithms.h"

namespace tap {

Expand Down

0 comments on commit 05a1365

Please sign in to comment.