Skip to content

Commit

Permalink
clang-7.0 porting.
Browse files Browse the repository at this point in the history
  • Loading branch information
viboes committed Sep 30, 2018
1 parent 5263b88 commit 5785b56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/functional/overload_pass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ int main()
[](std::string && i)
{
std::cout << "string(string&&)" << std::endl;
return i;
return std::move(i);
},
[](auto)
{
Expand All @@ -638,7 +638,7 @@ int main()
[](std::string && i)
{
std::cout << "string(string&&)" << std::endl;
return i;
return std::move(i);
},
[](auto)
{
Expand Down

0 comments on commit 5785b56

Please sign in to comment.