-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
92 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
diff --git a/src/drt/src/dr/FlexGridGraph_maze.cpp b/src/drt/src/dr/FlexGridGraph_maze.cpp | ||
index b3298cc9a..0da5e2322 100644 | ||
--- a/src/drt/src/dr/FlexGridGraph_maze.cpp | ||
+++ b/src/drt/src/dr/FlexGridGraph_maze.cpp | ||
@@ -58,7 +58,7 @@ void FlexGridGraph::printExpansion(const FlexWavefrontGrid& currGrid, | ||
pt, | ||
currGrid.getCost(), | ||
currGrid.getPathCost(), | ||
- currGrid.getLastDir(), | ||
+ int(currGrid.getLastDir()), | ||
currGrid.getCost() - currGrid.getPathCost(), | ||
gridX, | ||
gridY); | ||
diff --git a/src/gui/src/tclCmdInputWidget.h b/src/gui/src/tclCmdInputWidget.h | ||
index 86372b22c..94a89601d 100644 | ||
--- a/src/gui/src/tclCmdInputWidget.h | ||
+++ b/src/gui/src/tclCmdInputWidget.h | ||
@@ -33,6 +33,10 @@ | ||
#pragma once | ||
|
||
#include <tcl.h> | ||
+// Workaround for https://github.com/swig/swig/issues/2887 | ||
+#ifndef TCL_SIZE_MAX | ||
+using Tcl_Size = int; | ||
+#endif | ||
|
||
#include <QCompleter> | ||
#include <QMenu> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.