BString: make move constructor and assignment noexcept

Change-Id: I87f5ecad22f46b59386a091a1bb502536f460315
This commit is contained in:
Niels Sascha Reedijk
2021-12-17 16:25:44 +00:00
parent 70b63f18b3
commit bcd6a663c2
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -96,7 +96,7 @@
#if __cplusplus >= 201103L
/*!
\fn BString::BString(BString&& string)
\fn BString::BString(BString&& string) noexcept
\brief Move the data from the \a string to this object.
Create a new string object with the data of another \a string. The
@@ -287,7 +287,7 @@
#if __cplusplus >= 201103L
/*!
\fn BString& BString::operator=(BString&& string)
\fn BString& BString::operator=(BString&& string) noexcept
\brief Move the contents of \a string to this BString object.
The \a string will no longer point to the same contents.