aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2025-12-01 14:05:28 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2025-12-04 11:50:37 +0100
commit28c24b82e4d8bda62fd4aff7f0d6da5602676895 (patch)
tree73e8d4ac18c56261422fb27a1f3ea4cac871cb37
parent39c74e4317c1f4b34a2d0d66a721b44a5adc652f (diff)
shiboken6: Remove redundant operator declarationHEADdev
Pick-to: 6.10 Change-Id: Ie3007e3d0e5baf0440788ee9a89133ea4a003f70 Reviewed-by: Ece Cinucen <ece.cinucen@qt.io> Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
-rw-r--r--sources/shiboken6/tests/libsample/point.h2
-rw-r--r--sources/shiboken6/tests/libsample/pointf.h2
2 files changed, 0 insertions, 4 deletions
diff --git a/sources/shiboken6/tests/libsample/point.h b/sources/shiboken6/tests/libsample/point.h
index 7e5d128ab..61cc68ac0 100644
--- a/sources/shiboken6/tests/libsample/point.h
+++ b/sources/shiboken6/tests/libsample/point.h
@@ -71,6 +71,4 @@ LIBSAMPLE_API bool operator!(const Point &pt);
LIBSAMPLE_API Complex transmutePointIntoComplex(const Point &point);
LIBSAMPLE_API Point transmuteComplexIntoPoint(const Complex &cpx);
-LIBSAMPLE_API Point operator*(const Point &pt, double multiplier);
-
#endif // POINT_H
diff --git a/sources/shiboken6/tests/libsample/pointf.h b/sources/shiboken6/tests/libsample/pointf.h
index 49e009467..5e7fd7ee6 100644
--- a/sources/shiboken6/tests/libsample/pointf.h
+++ b/sources/shiboken6/tests/libsample/pointf.h
@@ -60,6 +60,4 @@ LIBSAMPLE_API PointF operator*(int mult, const PointF &pt);
LIBSAMPLE_API PointF operator-(const PointF &pt);
LIBSAMPLE_API bool operator!(const PointF &pt);
-LIBSAMPLE_API PointF operator*(const PointF &pt, double multiplier);
-
#endif // POINTF_H