[Mlir-commits] [llvm] [mlir] eliminating g++ warnings (PR #105520)
Jakub Kuderski
llvmlistbot at llvm.org
Wed Aug 21 06:47:51 PDT 2024
================
@@ -150,11 +150,10 @@ inline bool checkArgTypeAtIndex(llvm::StringRef matcherName,
// Marshaller function for fixed number of arguments
template <typename ReturnType, typename... ArgTypes, size_t... Is>
-static VariantMatcher
-matcherMarshallFixedImpl(void (*matcherFunc)(), llvm::StringRef matcherName,
- SourceRange nameRange,
- llvm::ArrayRef<ParserValue> args, Diagnostics *error,
- std::index_sequence<Is...>) {
+static VariantMatcher matcherMarshallFixedImpl(
+ void (*matcherFunc)(), [[maybe_unused]] llvm::StringRef matcherName,
+ SourceRange nameRange, llvm::ArrayRef<ParserValue> args, Diagnostics *error,
+ std::index_sequence<Is...>) {
----------------
kuhar wrote:
Same here
https://github.com/llvm/llvm-project/pull/105520
More information about the Mlir-commits
mailing list