[clang] [clang-tools-extra] [lldb] [llvm] [mlir] Remove unused variables in the monorepo (PR #204994)
Nikita Popov via cfe-commits
cfe-commits at lists.llvm.org
Tue Jun 23 07:15:08 PDT 2026
================
@@ -59,9 +59,9 @@ class GenericNamedTask : public RTTIExtends<GenericNamedTask, Task> {
/// Generic task implementation.
template <typename FnT> class GenericNamedTaskImpl : public GenericNamedTask {
public:
- GenericNamedTaskImpl(FnT &&Fn, std::string DescBuffer)
+ GenericNamedTaskImpl(FnT &&Fn, std::string InDescBuffer)
: Fn(std::forward<FnT>(Fn)), Desc(DescBuffer.c_str()),
- DescBuffer(std::move(DescBuffer)) {}
+ DescBuffer(std::move(InDescBuffer)) {}
----------------
nikic wrote:
I don't understand how this rename is related to the rest of the change.
https://github.com/llvm/llvm-project/pull/204994
More information about the cfe-commits
mailing list