Skip to content

Commit f9d40b7

Browse files
authored
remove useless std::move (#6201)
1 parent a615cc2 commit f9d40b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/core/tx/schemeshard/schemeshard__operation_side_effects.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -824,7 +824,7 @@ void TSideEffects::DoUpdateTempDirsToRemoveState(TSchemeShard* ss, const TActorC
824824
}
825825

826826
for (auto& pathId : tempDirs) {
827-
const auto tempDirIt = it->second.find(std::move(pathId));
827+
const auto tempDirIt = it->second.find(pathId);
828828
if (tempDirIt == it->second.end()) {
829829
continue;
830830
}

0 commit comments

Comments
 (0)