-
-
Notifications
You must be signed in to change notification settings - Fork 21.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #91156 from akien-mga/4.2-cherrypicks
Cherry-picks for the 4.2 branch (future 4.2.3) - 1st batch
- Loading branch information
Showing
10 changed files
with
50 additions
and
14 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
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
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,22 @@ | ||
diff --git a/thirdparty/clipper2/include/clipper2/clipper.core.h b/thirdparty/clipper2/include/clipper2/clipper.core.h | ||
index a77cdad5f4..0de7c3720e 100644 | ||
--- a/thirdparty/clipper2/include/clipper2/clipper.core.h | ||
+++ b/thirdparty/clipper2/include/clipper2/clipper.core.h | ||
@@ -138,7 +138,7 @@ namespace Clipper2Lib | ||
} | ||
|
||
template <typename T2> | ||
- explicit Point<T>(const Point<T2>& p) | ||
+ explicit Point(const Point<T2>& p) | ||
{ | ||
Init(p.x, p.y, p.z); | ||
} | ||
@@ -180,7 +180,7 @@ namespace Clipper2Lib | ||
Point(const T2 x_, const T2 y_) { Init(x_, y_); } | ||
|
||
template <typename T2> | ||
- explicit Point<T>(const Point<T2>& p) { Init(p.x, p.y); } | ||
+ explicit Point(const Point<T2>& p) { Init(p.x, p.y); } | ||
|
||
Point operator * (const double scale) const | ||
{ |
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