Skip to content

Commit ab2938a

Browse files
committed
chore: remove std::move for a temporary object
1 parent 721e529 commit ab2938a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/iceberg/expression/manifest_evaluator.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ class ManifestEvalVisitor : public BoundVisitor<bool> {
340340
return NotSupported("Bounds of non-primitive partition fields are not supported.");
341341
}
342342
return Literal::Deserialize(
343-
bound, std::move(internal::checked_pointer_cast<PrimitiveType>(type)));
343+
bound, internal::checked_pointer_cast<PrimitiveType>(type)));
344344
}
345345

346346
private:

0 commit comments

Comments
 (0)