From 6090c86bd6cfd37e9c5e8b00a3dd38b57adce5ab Mon Sep 17 00:00:00 2001 From: Timur Pocheptsov Date: Tue, 27 Dec 2016 08:38:04 +0100 Subject: [PATCH] tst_qnetworkreply - remove redundant semicolon ... after a member-function declaration: this would be a compilation error anywhere outside of a class-definition, allowed as 'opt' inside a class-definition and essentially not needed at all (and is already different from other member-functions we have in the same code). Change-Id: Ia689a41bf2a1052cd19eb8fb4766ed9635c20c88 Reviewed-by: Jesus Fernandez Reviewed-by: Timur Pocheptsov --- tests/auto/network/access/qnetworkreply/tst_qnetworkreply.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/network/access/qnetworkreply/tst_qnetworkreply.cpp b/tests/auto/network/access/qnetworkreply/tst_qnetworkreply.cpp index b3c8a4f66b..14c89d36da 100644 --- a/tests/auto/network/access/qnetworkreply/tst_qnetworkreply.cpp +++ b/tests/auto/network/access/qnetworkreply/tst_qnetworkreply.cpp @@ -132,7 +132,7 @@ class tst_QNetworkReply: public QObject "location: %1\r\n" "\r\n"; return s; - }; + } QEventLoop *loop; enum RunSimpleRequestReturn { Timeout = 0, Success, Failure };