diff options
Diffstat (limited to 'libcxx/include/strstream')
-rw-r--r-- | libcxx/include/strstream | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/include/strstream b/libcxx/include/strstream index 95568575945..54a3b6e4935 100644 --- a/libcxx/include/strstream +++ b/libcxx/include/strstream @@ -152,7 +152,7 @@ public: #ifdef _LIBCPP_MOVE strstreambuf(strstreambuf&& __rhs); strstreambuf& operator=(strstreambuf&& __rhs); -#endif +#endif // _LIBCPP_MOVE virtual ~strstreambuf(); @@ -214,7 +214,7 @@ public: __sb_ = _STD::move(__rhs.__sb_); return *this; } -#endif +#endif // _LIBCPP_MOVE virtual ~istrstream(); @@ -256,7 +256,7 @@ public: __sb_ = _STD::move(__rhs.__sb_); return *this; } -#endif +#endif // _LIBCPP_MOVE virtual ~ostrstream(); @@ -307,7 +307,7 @@ public: __sb_ = _STD::move(__rhs.__sb_); return *this; } -#endif +#endif // _LIBCPP_MOVE virtual ~strstream(); |