tst_qtimer: remove extra ;
after Q_DISABLE_COPY
Fixes warning from sanitize-commit. Change-Id: Ie52de4e34fce903d898619bc8e2338a15b7b7e68 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
parent
340b972995
commit
66345ce785
@ -1031,7 +1031,7 @@ void tst_QTimer::singleShotToFunctors()
|
|||||||
thread.wait();
|
thread.wait();
|
||||||
|
|
||||||
struct MoveOnly : CountedStruct {
|
struct MoveOnly : CountedStruct {
|
||||||
Q_DISABLE_COPY(MoveOnly);
|
Q_DISABLE_COPY(MoveOnly)
|
||||||
MoveOnly(MoveOnly &&o) : CountedStruct(std::move(o)) {};
|
MoveOnly(MoveOnly &&o) : CountedStruct(std::move(o)) {};
|
||||||
MoveOnly(int *c) : CountedStruct(c) {}
|
MoveOnly(int *c) : CountedStruct(c) {}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user