[PATCH] D141569: [clang-tidy] Implement CppCoreGuideline F.18
Piotr Zegar via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Feb 20 07:14:44 PST 2023
PiotrZSL added a comment.
And on something like this I still got reproduction in production code:
template <int tagValue, typename T>
struct SomeClass
{
public:
explicit SomeClass(T&& value) : value(std::forward<T>(value)) {}
T value;
};
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D141569/new/
https://reviews.llvm.org/D141569
More information about the cfe-commits
mailing list