Avoid using a C++20 feature#680
Conversation
ngober
left a comment
There was a problem hiding this comment.
You're right. I saw this earlier, but the testing compilers seemed to tolerate it, so I left it in.
Also, I must have seen this earlier, but it's more generic to pass the variadic arguments as forwarding references (Args&&..., then std::forward<Args>(args)... at the call site. While we're in here, would you change them?
Lambda template is a C++20 feature.
I found a warning for it noisy and wanted to remove it.
Done with commit f797b14. |
Author: Nathan Gober Committer: GitHub Merge pull request #680 from akihikodaki/lambda Avoid using a C++20 feature
Lambda template is a C++20 feature.