Skip to content

Commit 2fe625e

Browse files
committed
1 parent 6175fcf commit 2fe625e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

llvm/include/llvm/Support/TaskQueue.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class TaskQueue {
9898
IsTaskInFlight = true;
9999
}
100100
}
101-
return std::move(F);
101+
return F;
102102
}
103103

104104
private:

mlir/include/mlir/Parser.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ inline OwningOpRef<ContainerOpT> constructContainerOpForParserIfNecessary(
6767
// contain the operations inside of it.
6868
if (failed(op.verify()))
6969
return OwningOpRef<ContainerOpT>();
70-
return std::move(opRef);
70+
return opRef;
7171
}
7272
} // end namespace detail
7373

0 commit comments

Comments
 (0)