You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following the issue #68105, I found out that clang-tidy still complains about forwarding in lambda capture, if lambda variable is initialized with braces instead of equal.
clang-tidy is ok with makeFuncA, while complains on makeFuncB. func2{std::forward<F>(func)} should be considered the same of func2 = std::forward<F>(func).