Skip to content

Commit

Permalink
Merge pull request cpprefjp#1264 from nakashima-hikaru/patch-1
Browse files Browse the repository at this point in the history
docs: std::ranges::copyのサンプルコード内コメントの自明な修正
  • Loading branch information
faithandbrave authored Mar 30, 2024
2 parents b064d83 + 2bb90e8 commit 7d4583d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reference/algorithm/ranges_copy.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ int main() {
std::vector<int> v2(v.size()); // ちゃんと確保しておくこと
std::ranges::copy(v, v2.begin());

// back_inserter を使って v3 へ設定。
// back_inserter は要素をコピーするときに v3.push_back() するイテレータを作る関数。
// back_inserter を使って ls3 へ設定。
// back_inserter は要素をコピーするときに ls3.push_back() するイテレータを作る関数。
std::list<int> ls3;
std::ranges::copy(v2, std::back_inserter(ls3));

Expand Down

0 comments on commit 7d4583d

Please sign in to comment.