Skip to content

Commit 7910706

Browse files
committed
remove std::tie
1 parent 05f38df commit 7910706

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

flang/lib/Lower/OpenMP/Atomic.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -625,8 +625,7 @@ genAtomicUpdate(lower::AbstractConverter &converter,
625625
// operations with exactly two (non-optional) arguments.
626626
rhs = genReducedMinMax(rhs, atomArg, args);
627627
input = *evaluate::GetConvertInput(rhs);
628-
std::tie(opcode, args) =
629-
evaluate::GetTopLevelOperationIgnoreResizing(input);
628+
auto [opcode, args] = evaluate::GetTopLevelOperationIgnoreResizing(input);
630629
atomArg = nullptr; // No longer valid.
631630
}
632631
for (auto &arg : args) {

0 commit comments

Comments
 (0)