Skip to content

Commit

Permalink
ostringstreamのstr() 修飾の修正
Browse files Browse the repository at this point in the history
  • Loading branch information
onihusube committed Jul 26, 2023
1 parent a5c1257 commit e0d67ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions reference/sstream/basic_ostringstream/str.md
Expand Up @@ -8,8 +8,8 @@
basic_string<CharT, Traits, Allocator> str() const; // (1) C++03
basic_string<CharT, Traits, Allocator> str() const &; // (1) C++20
template <class SAlloc>
basic_string<CharT, Traits, SAlloc> str(const SAlloc& sa) const &; // (2) C++20
basic_string<CharT, Traits, Allocator> str() const &&; // (3) C++20
basic_string<CharT, Traits, SAlloc> str(const SAlloc& sa) const; // (2) C++20
basic_string<CharT, Traits, Allocator> str() &&; // (3) C++20

void str(const basic_string<CharT, Traits, Allocator>& s); // (4)
template <class SAlloc>
Expand Down
4 changes: 2 additions & 2 deletions reference/sstream/basic_stringbuf/str.md
Expand Up @@ -8,8 +8,8 @@
basic_string<CharT, Traits, Allocator> str() const; // (1) C++03
basic_string<CharT, Traits, Allocator> str() const &; // (1) C++20
template <class SAlloc>
basic_string<CharT, Traits, SAlloc> str(const SAlloc& sa) const &; // (2) C++20
basic_string<CharT, Traits, Allocator> str() const &&; // (3) C++20
basic_string<CharT, Traits, SAlloc> str(const SAlloc& sa) const; // (2) C++20
basic_string<CharT, Traits, Allocator> str() &&; // (3) C++20

void str(const basic_string<CharT, Traits, Allocator>& s); // (4)
template <class SAlloc>
Expand Down

0 comments on commit e0d67ff

Please sign in to comment.