Doc: Add Q_MV_IOS to ignored C++ directives

Enumeration QSysInfo::MacVersion uses a macro to define
enumeration values. QDoc gets confused about it and
prints a lot of warnings.

Adding the macro to ignored directives does not resolve
the documentation issue completely (enum values still
show up as '?'), but it gets rid of the warnings.

Task-number: QTBUG-43810
Change-Id: Ie4009646a78c62b5f1860d29855d3941e79d9388
Reviewed-by: Topi Reiniö <topi.reinio@digia.com>
This commit is contained in:
Nico Vertriest 2015-07-22 10:52:10 +02:00
parent e6ddae07e1
commit f9eb2534de

View File

@ -152,4 +152,5 @@ Cpp.ignoredirectives += \
QT_WARNING_DISABLE_CLANG \
QT_WARNING_DISABLE_GCC \
QT_WARNING_DISABLE_INTEL \
QT_WARNING_DISABLE_MSVC
QT_WARNING_DISABLE_MSVC \
Q_MV_IOS