summaryrefslogtreecommitdiff
path: root/src/lib/corelib/tools/codelocation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/corelib/tools/codelocation.cpp')
-rw-r--r--src/lib/corelib/tools/codelocation.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/corelib/tools/codelocation.cpp b/src/lib/corelib/tools/codelocation.cpp
index ebfd5edc6..ea77fee9d 100644
--- a/src/lib/corelib/tools/codelocation.cpp
+++ b/src/lib/corelib/tools/codelocation.cpp
@@ -87,8 +87,9 @@ CodeLocation::CodeLocation(const QString &aFilePath, int aLine, int aColumn, boo
}
CodeLocation::CodeLocation(const CodeLocation &other) = default;
-
+CodeLocation::CodeLocation(CodeLocation &&other) noexcept = default;
CodeLocation &CodeLocation::operator=(const CodeLocation &other) = default;
+CodeLocation &CodeLocation::operator=(CodeLocation &&other) noexcept = default;
CodeLocation::~CodeLocation() = default;