Warning, /graphics/krita/3rdparty/ext_qt/0125-qtdeclarative-Build-fixes-for-GCC-11.patch is written in an unsupported language. File is not indexed.

0001 From eb6525f126f680f99598bac79d2682e2ebbdc4ac Mon Sep 17 00:00:00 2001
0002 From: Ville Voutilainen <ville.voutilainen@qt.io>
0003 Date: Mon, 18 Jan 2021 11:19:04 +0200
0004 Subject: [PATCH] Build fixes for GCC 11
0005 
0006 Task-number: QTBUG-89977
0007 Change-Id: I975a859d5252e2721475f86ced6c8dab06ae8c9c
0008 Reviewed-by: Lars Knoll <lars.knoll@qt.io>
0009 ---
0010  src/qml/compiler/qv4bytecodegenerator_p.h | 4 ++--
0011  1 file changed, 2 insertions(+), 2 deletions(-)
0012 
0013 diff --git a/src/qml/compiler/qv4bytecodegenerator_p.h b/src/qml/compiler/qv4bytecodegenerator_p.h
0014 index 1895a34a68d..5244c443c45 100644
0015 --- a/src/qml/compiler/qv4bytecodegenerator_p.h
0016 +++ b/src/qml/compiler/qv4bytecodegenerator_p.h
0017 @@ -186,13 +186,13 @@ QT_WARNING_POP
0018  
0019      Q_REQUIRED_RESULT Jump jumpNotUndefined()
0020      {
0021 -        Instruction::JumpNotUndefined data;
0022 +        Instruction::JumpNotUndefined data{};
0023          return addJumpInstruction(data);
0024      }
0025  
0026      Q_REQUIRED_RESULT Jump jumpNoException()
0027      {
0028 -        Instruction::JumpNoException data;
0029 +        Instruction::JumpNoException data{};
0030          return addJumpInstruction(data);
0031      }
0032  
0033 -- 
0034 2.16.3
0035