[Mlir-commits] [llvm] [mlir] eliminating g++ warnings (PR #105520)
Frank Schlimbach
llvmlistbot at llvm.org
Wed Aug 21 07:12:18 PDT 2024
================
@@ -1593,7 +1593,8 @@ foldTrait(Operation *, ArrayRef<Attribute>, SmallVectorImpl<OpFoldResult> &) {
/// Given a tuple type containing a set of traits, return the result of folding
/// the given operation.
template <typename... Ts>
-static LogicalResult foldTraits(Operation *op, ArrayRef<Attribute> operands,
+static LogicalResult foldTraits([[maybe_unused]] Operation *op,
+ [[maybe_unused]] ArrayRef<Attribute> operands,
----------------
fschlimb wrote:
`static_assert(sizeof(op) && sizeof(operands)); // avoid unused warning`
also avoids the compiler message.
Would that be acceptable?
https://github.com/llvm/llvm-project/pull/105520
More information about the Mlir-commits
mailing list