diff options
| author | nibbbl <63519528+nibbbl@users.noreply.github.com> | 2026-07-17 19:08:58 -0700 |
|---|---|---|
| committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2026-07-20 22:20:06 +0300 |
| commit | f37f129ae10248731febb748c03c545bcee5d974 (patch) | |
| tree | 291236cb6ec17421fa734f11883bfeb4602008d1 | |
| parent | 5986568a23836f9ce448a1912406eaedd3794175 (diff) | |
Fix undefined symbol link error in llcorehttp
These static consts in `HttpStatus` were not actually defined, but have
been working by luck --fails on Xcode 26.6 and maybe some other
toolchains?
| -rw-r--r-- | indra/llcorehttp/httpcommon.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/llcorehttp/httpcommon.cpp b/indra/llcorehttp/httpcommon.cpp index 315ff15ebb..a1b5f55e8d 100644 --- a/indra/llcorehttp/httpcommon.cpp +++ b/indra/llcorehttp/httpcommon.cpp @@ -36,9 +36,9 @@ namespace LLCore { -HttpStatus::type_enum_t EXT_CURL_EASY; -HttpStatus::type_enum_t EXT_CURL_MULTI; -HttpStatus::type_enum_t LLCORE; +const HttpStatus::type_enum_t HttpStatus::EXT_CURL_EASY; +const HttpStatus::type_enum_t HttpStatus::EXT_CURL_MULTI; +const HttpStatus::type_enum_t HttpStatus::LLCORE; HttpStatus::operator U32() const { |
