summaryrefslogtreecommitdiffstats
path: root/src/common-lib/exception.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common-lib/exception.cpp')
-rw-r--r--src/common-lib/exception.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common-lib/exception.cpp b/src/common-lib/exception.cpp
index ba3e8020..6b9212c7 100644
--- a/src/common-lib/exception.cpp
+++ b/src/common-lib/exception.cpp
@@ -86,7 +86,7 @@ Exception::Exception(Exception &&move) Q_DECL_NOEXCEPT
: m_errorCode(move.m_errorCode)
, m_errorString(move.m_errorString)
{
- qSwap(m_whatBuffer, move.m_whatBuffer);
+ std::swap(m_whatBuffer, move.m_whatBuffer);
}
Exception::~Exception() Q_DECL_NOEXCEPT