From d14e17c55847886f96387cf4542d7112ff588f28 Mon Sep 17 00:00:00 2001 From: wmayer Date: Mon, 8 Jun 2020 20:20:55 +0200 Subject: [PATCH] Py3.8: [skip ci] missing initializer for member '_typeobject::tp_vectorcall' [-Wmissing-field-initializers] --- src/App/FeaturePythonPyImp.inl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/App/FeaturePythonPyImp.inl b/src/App/FeaturePythonPyImp.inl index f9b36edb12..600cfaef04 100644 --- a/src/App/FeaturePythonPyImp.inl +++ b/src/App/FeaturePythonPyImp.inl @@ -84,6 +84,9 @@ PyTypeObject FeaturePythonPyT::Type = { #if PY_MAJOR_VERSION >= 3 ,0 /*tp_finalize */ #endif +#if PY_VERSION_HEX >= 0x03080000 + ,0 /*tp_vectorcall */ +#endif }; template