aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2025-12-01 14:05:28 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2025-12-04 13:00:24 +0000
commit30158f9d4c0e6ff2cb98a1b024fe1b415fbe6bed (patch)
tree02a4b108d86677e752554fa67de4cc0b8e1e6abb
parente7aaeddc69d4780e4b9358c2d9e1b5375aa2afb1 (diff)
shiboken6: Remove redundant operator declaration6.10
Change-Id: Ie3007e3d0e5baf0440788ee9a89133ea4a003f70 Reviewed-by: Ece Cinucen <ece.cinucen@qt.io> Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io> (cherry picked from commit 28c24b82e4d8bda62fd4aff7f0d6da5602676895) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-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