Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
function_ref
should not always reference qualify parameters
By accepting `Args&&...`, a function that accepts its arguments by value is required to accept only rvalues. Instead, we should accept `Args...` (the exact argument types listed in the signature), which allows by-value parameters to copy from lvalue arguments.
- Loading branch information