Fix build with msvc2010

override on destructors are not very useful anyhow, but also msvc2010
doesn't like them at all.

Change-Id: I2d5f4b0d6148c5e66d2cba604d305707269d12e0
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Reviewed-by: Eike Ziller <eike.ziller@digia.com>
This commit is contained in:
Eike Ziller
2014-02-07 09:01:53 +01:00
parent e9cf16b701
commit 39a29dcfd9
9 changed files with 21 additions and 21 deletions

View File

@@ -53,7 +53,7 @@ class QMLJS_EXPORT Check: protected AST::Visitor
public:
// prefer taking root scope chain?
Check(Document::Ptr doc, const ContextPtr &context);
~Check() QTC_OVERRIDE;
~Check();
QList<StaticAnalysis::Message> operator()();