AutoTest: Fix compile with clang

Change-Id: I7657e0e823ae4c826efc987e2f414a51af3f1305
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
Christian Stenger
2017-10-06 14:10:26 +02:00
committed by David Schulz
parent c13e5bf21a
commit 508913e6b9

View File

@@ -27,7 +27,6 @@
#include "../testtreemodel.h" #include "../testtreemodel.h"
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
#include <utils/qtcfallthrough.h>
namespace Autotest { namespace Autotest {
namespace Internal { namespace Internal {
@@ -170,7 +169,7 @@ bool QtTestResult::matches(const TestTreeItem *item) const
return matchesTestFunction(item); return matchesTestFunction(item);
} }
default: default:
Q_FALLTHROUGH(); break;
} }
return false; return false;