diff options
author | Janne Anttila <janne.anttila@digia.com> | 2009-12-02 08:19:41 (GMT) |
---|---|---|
committer | Janne Anttila <janne.anttila@digia.com> | 2009-12-02 10:41:19 (GMT) |
commit | 1b6c1054c1ad8f99665ceaa958da01b1383a3e34 (patch) | |
tree | e9b86b62532a19a6d4e9795831a5912138c0aaaa /tools | |
parent | fb01592ef98dbaa4d0591df77cffaaf0ea0e117a (diff) | |
download | Qt-1b6c1054c1ad8f99665ceaa958da01b1383a3e34.zip Qt-1b6c1054c1ad8f99665ceaa958da01b1383a3e34.tar.gz Qt-1b6c1054c1ad8f99665ceaa958da01b1383a3e34.tar.bz2 |
Fixed "illegal empty declaration" warning from \tools\xmlpatterns
The following warning was reported by Symbian compilers:
tools\xmlpatterns\main.cpp:83: warning: illegal empty declaration
Reviewed-by: TrustMe
Diffstat (limited to 'tools')
-rw-r--r-- | tools/xmlpatterns/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/xmlpatterns/main.cpp b/tools/xmlpatterns/main.cpp index a930b70..604523b 100644 --- a/tools/xmlpatterns/main.cpp +++ b/tools/xmlpatterns/main.cpp @@ -80,14 +80,14 @@ QT_USE_NAMESPACE Represents the name and value found in "-param name=value". */ typedef QPair<QString, QString> Parameter; -Q_DECLARE_METATYPE(Parameter); +Q_DECLARE_METATYPE(Parameter) /*! \internal \since 4.4 For the -output switch. */ -Q_DECLARE_METATYPE(QIODevice *); +Q_DECLARE_METATYPE(QIODevice *) /*! \class PatternistApplicationParser |