summaryrefslogtreecommitdiffstats
path: root/tests/auto/other
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2020-07-26 17:11:19 +0200
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2020-07-26 18:06:34 +0200
commitf418a96f9b7f003738894d0c19e176b2abc457df (patch)
tree01c5f37ed6cd4079f296ae066ae0bc82b0f62392 /tests/auto/other
parentd1fd2ff11f53be850eeb7f5f4699ea4a8966f164 (diff)
Disable warning about self-move and self-assign-overload
Change-Id: I1d20d3f424eced5cc5787934663b9d243f75d46e Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'tests/auto/other')
-rw-r--r--tests/auto/other/compiler/tst_compiler.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/other/compiler/tst_compiler.cpp b/tests/auto/other/compiler/tst_compiler.cpp
index 435bd42faf..10d91894b7 100644
--- a/tests/auto/other/compiler/tst_compiler.cpp
+++ b/tests/auto/other/compiler/tst_compiler.cpp
@@ -1224,8 +1224,11 @@ void tst_Compiler::cxx11_rvalue_refs()
#else
// we require std::move:
{
+QT_WARNING_PUSH
+QT_WARNING_DISABLE_CLANG("-Wself-move")
int i = 1;
i = std::move(i);
+QT_WARNING_POP
MoveDefinedQString s("Hello");
MoveDefinedQString t = std::move(s);