summaryrefslogtreecommitdiff
path: root/src/lib/corelib/tools/codelocation.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/corelib/tools/codelocation.h')
-rw-r--r--src/lib/corelib/tools/codelocation.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/corelib/tools/codelocation.h b/src/lib/corelib/tools/codelocation.h
index 158b90766..33b832df0 100644
--- a/src/lib/corelib/tools/codelocation.h
+++ b/src/lib/corelib/tools/codelocation.h
@@ -62,7 +62,9 @@ public:
explicit CodeLocation(const QString &aFilePath, int aLine = -1, int aColumn = -1,
bool checkPath = true);
CodeLocation(const CodeLocation &other);
+ CodeLocation(CodeLocation &&other) noexcept;
CodeLocation &operator=(const CodeLocation &other);
+ CodeLocation &operator=(CodeLocation &&other) noexcept;
~CodeLocation();
QString filePath() const;