Skip to content

Commit

Permalink
Merge pull request #6423 from hzeller/feature-20241223-tapinc
Browse files Browse the repository at this point in the history
Fix missing includes in tapcell.{h,cpp}
  • Loading branch information
maliberty authored Dec 24, 2024
2 parents 32f3566 + 05a1365 commit 95963c9
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 95963c9

Please sign in to comment.