aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/ApiExtractor/parser/codemodel.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2018-07-20 13:41:25 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2018-07-24 11:10:28 +0000
commit027893b4955ce9bd08f0e68960806c74d77805e2 (patch)
tree446daafb37dc35487f300564aec05e61b492abcd /sources/shiboken2/ApiExtractor/parser/codemodel.h
parentbbbcc44789a2206c85836fc9656389d00ca7e010 (diff)
shiboken: Add exception specification to clang parser
For exception handling, calls into C++ might need to wrapped in try/catch. Detect noexcept functions for which this can be omitted. Task-number: PYSIDE-62 Change-Id: I37aced91ace184edf211a457a60c131d516a4037 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'sources/shiboken2/ApiExtractor/parser/codemodel.h')
-rw-r--r--sources/shiboken2/ApiExtractor/parser/codemodel.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/sources/shiboken2/ApiExtractor/parser/codemodel.h b/sources/shiboken2/ApiExtractor/parser/codemodel.h
index a2cbcd6c0..eef2bf281 100644
--- a/sources/shiboken2/ApiExtractor/parser/codemodel.h
+++ b/sources/shiboken2/ApiExtractor/parser/codemodel.h
@@ -603,8 +603,12 @@ public:
bool isVariadics() const;
void setVariadics(bool isVariadics);
+
bool isSimilar(const FunctionModelItem &other) const;
+ bool isNoExcept() const;
+ void setNoExcept(bool n);
+
#ifndef QT_NO_DEBUG_STREAM
void formatDebug(QDebug &d) const override;
#endif
@@ -623,6 +627,7 @@ private:
uint m_isAbstract: 1;
uint m_isExplicit: 1;
uint m_isVariadics: 1;
+ uint m_isNoExcept : 1;
uint m_isInvokable : 1; // Qt
};
uint m_flags;