Skip to content

Commit

Permalink
Fix Macos build
Browse files Browse the repository at this point in the history
  • Loading branch information
AWoloszyn committed Jan 4, 2019
1 parent ec206a0 commit 4783f92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gapir/cc/grpc_replay_service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ GrpcReplayService::getNonReplayRequest() {
auto req = std::move(mDeferredData.front());
mDeferredData.pop_front();
mCommunicationLock.unlock();
return std::move(req);
return req;
}

std::unique_ptr<replay_service::ReplayRequest>
Expand All @@ -186,7 +186,7 @@ GrpcReplayService::getReplayRequest() {
auto req = std::move(mDeferredRequests.front());
mDeferredRequests.pop_front();
mCommunicationLock.unlock();
return std::move(req);
return req;
}

} // namespace gapir

0 comments on commit 4783f92

Please sign in to comment.