summaryrefslogtreecommitdiffstats
path: root/thirdparty/clipper2/patches/gcc14-warning.patch
diff options
context:
space:
mode:
authorSpartan322 <Megacake1234@gmail.com>2024-11-27 13:52:25 -0500
committerSpartan322 <Megacake1234@gmail.com>2024-11-27 13:52:25 -0500
commit721f53fde47c2727d99e3ecccdb789a67df36de0 (patch)
tree55ec5bfa061a5c27272b831e697b78ed1b756a70 /thirdparty/clipper2/patches/gcc14-warning.patch
parentb06d20bf39d15ec736d08d4e4fcb32e0c3c1ce1e (diff)
parentf128f383e892865379cb8b14e7bcc9858efe2973 (diff)
downloadredot-engine-721f53fde47c2727d99e3ecccdb789a67df36de0.tar.gz
Merge commit godotengine/godot@f128f383e892865379cb8b14e7bcc9858efe2973
Diffstat (limited to 'thirdparty/clipper2/patches/gcc14-warning.patch')
-rw-r--r--thirdparty/clipper2/patches/gcc14-warning.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/thirdparty/clipper2/patches/gcc14-warning.patch b/thirdparty/clipper2/patches/gcc14-warning.patch
deleted file mode 100644
index a4f06ef37e..0000000000
--- a/thirdparty/clipper2/patches/gcc14-warning.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-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
- {