Make parameter const&

This commit is contained in:
A.J. Beamon 2021-04-28 10:30:30 -07:00
parent 931499fb3f
commit 135cc9c69a
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ struct RequestData : NonCopyable {
// A return value of true means that the request completed successfully
// A return value of false means that the request failed but should be retried
// A return value with an error means that the error should be thrown back to original caller
static ErrorOr<bool> checkAndProcessResultImpl(Reply result,
static ErrorOr<bool> checkAndProcessResultImpl(Reply const& result,
Reference<ModelHolder> modelHolder,
bool atMostOnce,
bool triedAllOptions) {