summaryrefslogtreecommitdiffstats
path: root/tests/auto/network
diff options
context:
space:
mode:
authorTimur Pocheptsov <timur.pocheptsov@qt.io>2016-12-27 08:38:04 +0100
committerTimur Pocheptsov <timur.pocheptsov@qt.io>2016-12-28 14:36:22 +0000
commit6090c86bd6cfd37e9c5e8b00a3dd38b57adce5ab (patch)
treef6acb4d6260313d7bc0777f217cc7cc76a901bf6 /tests/auto/network
parentd908ba2765cc7aef05832c8c442df6c1bf921820 (diff)
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 <jesus.fernandez@qt.io> Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io>
Diffstat (limited to 'tests/auto/network')
-rw-r--r--tests/auto/network/access/qnetworkreply/tst_qnetworkreply.cpp2
1 files changed, 1 insertions, 1 deletions
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 };