Skip to content

Commit

Permalink
remove uneeded patch
Browse files Browse the repository at this point in the history
Signed-off-by: Kareem Farid <[email protected]>
  • Loading branch information
kareefardi committed Dec 9, 2024
1 parent 9348b0d commit 914ad54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 36 deletions.
6 changes: 3 additions & 3 deletions nix/openroad.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@
cmake,
ninja,
git,
rev ? "1d610077e69607c430ffedd0dc6034c6af701a39",
rev-date ? "2024-12-05",
sha256 ? "sha256-jkyugDqA5I54Xozdf6xbajCmghNt3rF0srzGMzcKxQ8=",
# environments,
rev ? "87af90f72f3f9be1fdfa1d886f0dd8d8b8f34694",
rev-date ? "2024-12-08",
sha256 ? "sha256-GS8DLpAtC5gJfQeP+YOCImVXaAPQNzVbdDjdiB7Aovc=",
openroad,
buildPythonEnvForInterpreter,
}: let
Expand Down
33 changes: 0 additions & 33 deletions nix/patches/openroad/patches.diff
Original file line number Diff line number Diff line change
Expand Up @@ -26,36 +26,3 @@ index 86372b22c..94a89601d 100644

#include <QCompleter>
#include <QMenu>
diff --git a/src/odb/src/db/dbMarker.cpp b/src/odb/src/db/dbMarker.cpp
index f3e1fc96b..d0a12673c 100644
--- a/src/odb/src/db/dbMarker.cpp
+++ b/src/odb/src/db/dbMarker.cpp
@@ -506,8 +506,10 @@ void _dbMarker::fromPTree(const _dbMarkerCategory::PropertyTree& tree)
} else if (shape_type.value() == "polygon") {
shapes_.emplace_back(Polygon(pts));
} else {
- getLogger()->warn(
- utl::ODB, 256, "Unable to find shape of violation: {}", shape_type);
+ getLogger()->warn(utl::ODB,
+ 256,
+ "Unable to find shape of violation: {}",
+ shape_type.value());
}
}
}
@@ -561,7 +563,7 @@ void _dbMarker::fromPTree(const _dbMarkerCategory::PropertyTree& tree)
src_found = true;
} else {
getLogger()->warn(
- utl::ODB, 262, "Unable to find bterm: {}", src_name);
+ utl::ODB, 262, "Unable to find bterm: {}", src_name.value());
}
} else if (src_type.value() == "obstruction") {
src_found = marker->addObstructionFromBlock(block);
@@ -889,4 +891,4 @@ dbOStream& operator<<(dbOStream& stream, const _dbMarker::ShapeType& obj)

// User Code End dbMarkerPublicMethods
} // namespace odb
- // Generator Code End Cpp
\ No newline at end of file
+ // Generator Code End Cpp

0 comments on commit 914ad54

Please sign in to comment.