Skip to content

Commit

Permalink
Merge pull request #1358 from biobios/master
Browse files Browse the repository at this point in the history
コンストラクタ引数の誤りを修正
  • Loading branch information
faithandbrave authored Nov 2, 2024
2 parents 19bc6ae + eee0ae9 commit 00b8c13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reference/functional/function/op_constructor.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function(function&& f); // (4) C++17まで
function(function&& f) noexcept; // (4) C++20

template <class F>
function(F f); // (5)
function(F&& f); // (5)

template <class Alloc>
function(allocator_arg_t, const Alloc& alloc) noexcept; // (6) C++17で削除
Expand Down

0 comments on commit 00b8c13

Please sign in to comment.