diff --git a/libcxx/include/strstream b/libcxx/include/strstream --- a/libcxx/include/strstream +++ b/libcxx/include/strstream @@ -258,7 +258,7 @@ _LIBCPP_INLINE_VISIBILITY istrstream(istrstream&& __rhs) : istream(_VSTD::move(__rhs)), - __sb_(_VSTD::move(__rhs.__sb_)) + __sb_(_VSTD::move(__rhs.__sb_)) // NOLINT(bugprone-use-after-move) { istream::set_rdbuf(&__sb_); } @@ -307,7 +307,7 @@ _LIBCPP_INLINE_VISIBILITY ostrstream(ostrstream&& __rhs) : ostream(_VSTD::move(__rhs)), - __sb_(_VSTD::move(__rhs.__sb_)) + __sb_(_VSTD::move(__rhs.__sb_)) // NOLINT(bugprone-use-after-move) { ostream::set_rdbuf(&__sb_); } @@ -367,7 +367,7 @@ _LIBCPP_INLINE_VISIBILITY strstream(strstream&& __rhs) : iostream(_VSTD::move(__rhs)), - __sb_(_VSTD::move(__rhs.__sb_)) + __sb_(_VSTD::move(__rhs.__sb_)) // NOLINT(bugprone-use-after-move) { iostream::set_rdbuf(&__sb_); }