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 e1a003d commit b331664Copy full SHA for b331664
flang/lib/Optimizer/CodeGen/BoxedProcedure.cpp
@@ -154,7 +154,7 @@ class BoxprocTypeRewriter : public mlir::TypeConverter {
154
ty.getName().str() + boxprocSuffix.str());
155
if (rec.isFinalized())
156
return rec;
157
- auto it = convertedTypes.try_emplace(ty, rec);
+ [[maybe_unused]] auto it = convertedTypes.try_emplace(ty, rec);
158
assert(it.second && "expected ty to not be in the map");
159
std::vector<RecordType::TypePair> ps = ty.getLenParamList();
160
std::vector<RecordType::TypePair> cs;
0 commit comments