Skip to content

Commit

Permalink
Update Device.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
pbhandar2 authored Jan 2, 2025
1 parent 58ee2e7 commit 87e8d7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cachelib/navy/common/Device.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@ std::unique_ptr<folly::AsyncBaseOp> AsyncIoContext::prepAsyncIo(IOOp& op) {
asyncOp = std::make_unique<folly::IoUringOp>();
#endif
} else {
asyncOp = std::make_unique<folly::AsyncIOOp>();
asyncOp = std::move(std::make_unique<folly::AsyncIOOp>());
}

if (req.opType_ == OpType::READ) {
Expand Down

0 comments on commit 87e8d7d

Please sign in to comment.