aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2021-03-11 09:31:12 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-03-11 14:18:54 +0000
commit5422f65496155fcc9056ed4dda2c8493716d5da8 (patch)
tree7949641e8cf7b54d3eb8be61900048712648ae7d
parent4772406328d0e1b5b2320ada39924110455cac63 (diff)
libshiboken: Silence unimplemented array type warning
It is more of an annoyance than helpful since it is triggered by the implicit conversion checks already. Task-number: PYSIDE-354 Fixes: PYSIDE-979 Change-Id: I213ad607c61e0279c8cada4efa0a2cfd3cad8892 Reviewed-by: Christian Tismer <tismer@stackless.com> (cherry picked from commit 7d602dc46163be603e87b1ef4f8db7b1ab87c1f6) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--sources/shiboken6/libshiboken/sbkarrayconverter.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/sources/shiboken6/libshiboken/sbkarrayconverter.cpp b/sources/shiboken6/libshiboken/sbkarrayconverter.cpp
index d94d03b34..58d58d25c 100644
--- a/sources/shiboken6/libshiboken/sbkarrayconverter.cpp
+++ b/sources/shiboken6/libshiboken/sbkarrayconverter.cpp
@@ -90,7 +90,6 @@ SbkArrayConverter *createArrayConverter(IsArrayConvertibleToCppFunc toCppCheckFu
static PythonToCppFunc unimplementedArrayCheck(PyObject *, int, int)
{
- warning(PyExc_RuntimeWarning, 0, "SbkConverter: Unimplemented C++ array type.");
return nullptr;
}