From 68d6f49b8b05415bdce6150df6c2250af971202c 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: [PATCH] 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 315ff15ebbd..a1b5f55e8df 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 {