diff options
| author | Rider Linden <rider@lindenlab.com> | 2015-07-08 13:41:07 -0700 | 
|---|---|---|
| committer | Rider Linden <rider@lindenlab.com> | 2015-07-08 13:41:07 -0700 | 
| commit | ef3d1d642eb384fff853e227b92e20d66dbb8db7 (patch) | |
| tree | 7eab70a8298f2f00bcc699562446c0f99d94f0e7 | |
| parent | 7ff38e34eaea52b4d1b856efa9de685cbdbd28ba (diff) | |
Replace ref parameter with value
| -rw-r--r-- | indra/llmessage/llcorehttputil.cpp | 12 | ||||
| -rw-r--r-- | indra/llmessage/llcorehttputil.h | 12 | 
2 files changed, 12 insertions, 12 deletions
diff --git a/indra/llmessage/llcorehttputil.cpp b/indra/llmessage/llcorehttputil.cpp index 24f5d77ee1..5b5929383a 100644 --- a/indra/llmessage/llcorehttputil.cpp +++ b/indra/llmessage/llcorehttputil.cpp @@ -102,8 +102,8 @@ HttpHandle requestPostWithLLSD(HttpRequest * request,      HttpRequest::priority_t priority,      const std::string & url,      const LLSD & body, -    HttpOptions::ptr_t &options, -    HttpHeaders::ptr_t &headers, +    HttpOptions::ptr_t options, +    HttpHeaders::ptr_t headers,      HttpHandler * handler)  {      HttpHandle handle(LLCORE_HTTP_HANDLE_INVALID); @@ -129,8 +129,8 @@ HttpHandle requestPutWithLLSD(HttpRequest * request,      HttpRequest::priority_t priority,      const std::string & url,      const LLSD & body, -    HttpOptions::ptr_t &options, -    HttpHeaders::ptr_t &headers, +    HttpOptions::ptr_t options, +    HttpHeaders::ptr_t headers,      HttpHandler * handler)  {      HttpHandle handle(LLCORE_HTTP_HANDLE_INVALID); @@ -155,8 +155,8 @@ HttpHandle requestPatchWithLLSD(HttpRequest * request,      HttpRequest::priority_t priority,      const std::string & url,      const LLSD & body, -    HttpOptions::ptr_t &options, -    HttpHeaders::ptr_t &headers, +    HttpOptions::ptr_t options, +    HttpHeaders::ptr_t headers,      HttpHandler * handler)  {      HttpHandle handle(LLCORE_HTTP_HANDLE_INVALID); diff --git a/indra/llmessage/llcorehttputil.h b/indra/llmessage/llcorehttputil.h index 1e575e0e0c..4fada92666 100644 --- a/indra/llmessage/llcorehttputil.h +++ b/indra/llmessage/llcorehttputil.h @@ -111,8 +111,8 @@ LLCore::HttpHandle requestPostWithLLSD(LLCore::HttpRequest * request,  									   LLCore::HttpRequest::priority_t priority,  									   const std::string & url,  									   const LLSD & body, -                                       LLCore::HttpOptions::ptr_t &options, -									   LLCore::HttpHeaders::ptr_t &headers, +                                       LLCore::HttpOptions::ptr_t options, +									   LLCore::HttpHeaders::ptr_t headers,  									   LLCore::HttpHandler * handler);  inline LLCore::HttpHandle requestPostWithLLSD(LLCore::HttpRequest::ptr_t & request, @@ -161,8 +161,8 @@ LLCore::HttpHandle requestPutWithLLSD(LLCore::HttpRequest * request,  	LLCore::HttpRequest::priority_t priority,  	const std::string & url,  	const LLSD & body, -	LLCore::HttpOptions::ptr_t &options, -	LLCore::HttpHeaders::ptr_t &headers, +	LLCore::HttpOptions::ptr_t options, +	LLCore::HttpHeaders::ptr_t headers,  	LLCore::HttpHandler * handler);  inline LLCore::HttpHandle requestPutWithLLSD(LLCore::HttpRequest::ptr_t & request, @@ -210,8 +210,8 @@ LLCore::HttpHandle requestPatchWithLLSD(LLCore::HttpRequest * request,      LLCore::HttpRequest::priority_t priority,      const std::string & url,      const LLSD & body, -    LLCore::HttpOptions::ptr_t &options, -    LLCore::HttpHeaders::ptr_t &headers, +    LLCore::HttpOptions::ptr_t options, +    LLCore::HttpHeaders::ptr_t headers,      LLCore::HttpHandler * handler);  inline LLCore::HttpHandle requestPatchWithLLSD(LLCore::HttpRequest::ptr_t & request,  | 
