From f37f129ae10248731febb748c03c545bcee5d974 Mon Sep 17 00:00:00 2001 From: nibbbl <63519528+nibbbl@users.noreply.github.com> Date: Fri, 17 Jul 2026 19:08:58 -0700 Subject: 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? --- indra/llcorehttp/httpcommon.cpp | 6 +++--- 1 file 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 { -- cgit v1.3