Make parameter const&
This commit is contained in:
parent
931499fb3f
commit
135cc9c69a
|
@ -122,7 +122,7 @@ struct RequestData : NonCopyable {
|
||||||
// A return value of true means that the request completed successfully
|
// 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 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
|
// 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,
|
Reference<ModelHolder> modelHolder,
|
||||||
bool atMostOnce,
|
bool atMostOnce,
|
||||||
bool triedAllOptions) {
|
bool triedAllOptions) {
|
||||||
|
|
Loading…
Reference in New Issue