summaryrefslogtreecommitdiff
path: root/dom/base/nsTextFragment.h
diff options
context:
space:
mode:
Diffstat (limited to 'dom/base/nsTextFragment.h')
-rw-r--r--dom/base/nsTextFragment.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/dom/base/nsTextFragment.h b/dom/base/nsTextFragment.h
index 725d9c6753..2845a14e1a 100644
--- a/dom/base/nsTextFragment.h
+++ b/dom/base/nsTextFragment.h
@@ -136,7 +136,7 @@ public:
* Append the contents of this string fragment to aString
* @return false if an out of memory condition is detected, true otherwise
*/
- MOZ_MUST_USE
+ [[nodiscard]]
bool AppendTo(nsAString& aString,
const mozilla::fallible_t& aFallible) const {
if (mState.mIs2b) {
@@ -170,7 +170,7 @@ public:
* @param aLength the length of the substring
* @return false if an out of memory condition is detected, true otherwise
*/
- MOZ_MUST_USE
+ [[nodiscard]]
bool AppendTo(nsAString& aString, int32_t aOffset, int32_t aLength,
const mozilla::fallible_t& aFallible) const
{