aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/ApiExtractor/abstractmetalang.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2018-05-15 17:11:57 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2018-05-16 09:36:08 +0000
commita66352996264d7dfbbe68df179421a8e0ef3637a (patch)
tree1e33d85992e42fe68caed5be2df60365ddac650c /sources/shiboken2/ApiExtractor/abstractmetalang.h
parent15273fe0fe52569013dd4811bf9ed770ce7fb287 (diff)
Fix wrongly generated code for enums passed by const-ref
First encountered in: QtScxmlEvent::setEventType(const EventType &); The metatype was wrongly detected as NativePointerPattern in AbstractMetaType::determineUsagePattern(). Introduce a helper for detecting plain const-ref and use that consistently. Change-Id: I6b105bc99ae63e4737c5d628e79f23b7acbcca3d Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'sources/shiboken2/ApiExtractor/abstractmetalang.h')
-rw-r--r--sources/shiboken2/ApiExtractor/abstractmetalang.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sources/shiboken2/ApiExtractor/abstractmetalang.h b/sources/shiboken2/ApiExtractor/abstractmetalang.h
index c31c5a386..cfc8b7246 100644
--- a/sources/shiboken2/ApiExtractor/abstractmetalang.h
+++ b/sources/shiboken2/ApiExtractor/abstractmetalang.h
@@ -434,6 +434,8 @@ public:
m_constant = constant;
}
+ bool isConstRef() const;
+
ReferenceType referenceType() const { return m_referenceType; }
void setReferenceType(ReferenceType ref) { m_referenceType = ref; }