[Mlir-commits] [mlir] fccb65e - [mlir] Fix '-Wtemplate-id-cdtor'. NFC
Michael Liao
llvmlistbot at llvm.org
Mon Dec 8 08:23:25 PST 2025
Author: Michael Liao
Date: 2025-12-08T11:22:48-05:00
New Revision: fccb65ef8f0faf40ca5dfaaa0ef70821f8843821
URL: https://github.com/llvm/llvm-project/commit/fccb65ef8f0faf40ca5dfaaa0ef70821f8843821
DIFF: https://github.com/llvm/llvm-project/commit/fccb65ef8f0faf40ca5dfaaa0ef70821f8843821.diff
LOG: [mlir] Fix '-Wtemplate-id-cdtor'. NFC
Added:
Modified:
mlir/lib/Pass/PassRegistry.cpp
Removed:
################################################################################
diff --git a/mlir/lib/Pass/PassRegistry.cpp b/mlir/lib/Pass/PassRegistry.cpp
index bc766d43e1109..9a240d51c98bc 100644
--- a/mlir/lib/Pass/PassRegistry.cpp
+++ b/mlir/lib/Pass/PassRegistry.cpp
@@ -436,7 +436,7 @@ llvm::cl::OptionValue<OpPassManager>::operator=(
return *this;
}
-llvm::cl::OptionValue<OpPassManager>::~OptionValue<OpPassManager>() = default;
+llvm::cl::OptionValue<OpPassManager>::~OptionValue() = default;
void llvm::cl::OptionValue<OpPassManager>::setValue(
const OpPassManager &newValue) {
More information about the Mlir-commits
mailing list