diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2017-05-11 13:55:20 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2017-05-11 13:55:20 +0000 |
commit | afda4a9af9d3be64c528e8a25c2990f216d494c6 (patch) | |
tree | a9e9ef714208df3e81e6f0642fdb431376f852e8 /libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con | |
parent | 9630f46ddeeab51b75f7e38673b43325e3cdc491 (diff) | |
download | bcm5719-llvm-afda4a9af9d3be64c528e8a25c2990f216d494c6.tar.gz bcm5719-llvm-afda4a9af9d3be64c528e8a25c2990f216d494c6.zip |
Mark LWG#2850 as complete. No functionality change; we had tests that covered it already. Just added comments to the tests. Thanks to K-ballo for the heads up.
llvm-svn: 302799
Diffstat (limited to 'libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con')
-rw-r--r-- | libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/copy_move.pass.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/copy_move.pass.cpp b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/copy_move.pass.cpp index 9d5681a3db7..7516b2e3af2 100644 --- a/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/copy_move.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/copy_move.pass.cpp @@ -11,7 +11,8 @@ // class function<R(ArgTypes...)> -// function(const function& f); +// function(const function& f); +// function(const function&& f); #include <functional> #include <memory> |