Skip to content

Commit 9b0b90d

Browse files
joker-ephmahesh-attarde
authored andcommitted
[MLIR] Apply clang-tidy fixes for modernize-use-emplace in LoopEmitter.cpp (NFC)
1 parent f6fc757 commit 9b0b90d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Dialect/SparseTensor/Transforms/Utils/LoopEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ void LoopEmitter::initSubSectIterator(OpBuilder &builder, Location loc) {
344344
// Reverse queue into a stack.
345345
std::reverse(remDepStack[t][lvl].begin(), remDepStack[t][lvl].end());
346346
for (auto [loop, coeff] : dependentLvlMap[t][lvl])
347-
depRedOrder.emplace_back(std::make_tuple(loop, t, lvl));
347+
depRedOrder.emplace_back(loop, t, lvl);
348348
}
349349

350350
if (depRedOrder.empty())

0 commit comments

Comments
 (0)