diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2015-06-29 09:07:19 -0400 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2015-06-29 09:07:19 -0400 | 
| commit | da7b675025ef1a9b884b54340d207e7bc77d36af (patch) | |
| tree | 4ad26029cd84159826690dd18ffb1885ddb24ca6 | |
| parent | 08ef748cba55d5d950b224710c8592e94fcce5c7 (diff) | |
Remove extraneous class qualification from method declaration.
clang doesn't like finding HttpCoroutineAdapter::postFileAndYield(...) inside
the class definition for HttpCoroutineAdapter. It's much happier with plain
postFileAndYield(...).
| -rw-r--r-- | indra/llmessage/llcorehttputil.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/llmessage/llcorehttputil.h b/indra/llmessage/llcorehttputil.h index 71f95dd6e4..17168bd1f8 100644 --- a/indra/llmessage/llcorehttputil.h +++ b/indra/llmessage/llcorehttputil.h @@ -371,12 +371,12 @@ public:      } -    LLSD HttpCoroutineAdapter::postFileAndYield(LLCoros::self & self, LLCore::HttpRequest::ptr_t request, +    LLSD postFileAndYield(LLCoros::self & self, LLCore::HttpRequest::ptr_t request,          const std::string & url, LLUUID assetId, LLAssetType::EType assetType,          LLCore::HttpOptions::ptr_t options = LLCore::HttpOptions::ptr_t(new LLCore::HttpOptions(), false),          LLCore::HttpHeaders::ptr_t headers = LLCore::HttpHeaders::ptr_t(new LLCore::HttpHeaders(), false)); -    LLSD HttpCoroutineAdapter::postFileAndYield(LLCoros::self & self, LLCore::HttpRequest::ptr_t request, +    LLSD postFileAndYield(LLCoros::self & self, LLCore::HttpRequest::ptr_t request,          const std::string & url, LLUUID assetId, LLAssetType::EType assetType,          LLCore::HttpHeaders::ptr_t &headers)      { | 
