We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 537b4d4 commit efd572cCopy full SHA for efd572c
src/ir/possible-contents.h
@@ -332,7 +332,7 @@ class PossibleContents {
332
WASM_UNREACHABLE("TODO: use Literals");
333
} else if (std::get_if<GlobalInfo>(&value)) {
334
WASM_UNREACHABLE("TODO");
335
- } else if (auto* cone = std::get_if<ConeType>(&value)) {
+ } else if ([[maybe_unused]] auto* cone = std::get_if<ConeType>(&value)) {
336
// Return a full cone of the appropriate type, as we lack depth info for
337
// the separate items in the tuple (tuples themselves have no subtyping,
338
// so the tuple's depth must be 0, i.e., an exact type).
0 commit comments