make bot happy

This commit is contained in:
J. Nick Koston 2025-07-05 23:48:37 -05:00
parent 87f1fac2bf
commit e2e86da64b
No known key found for this signature in database

View File

@ -39,8 +39,10 @@ static const char *const TAG = "web_server_idf";
// Global instance to avoid guard variable (saves 8 bytes)
// This is initialized at program startup before any threads
namespace {
// NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)
static DefaultHeaders default_headers_instance;
DefaultHeaders default_headers_instance;
} // namespace
DefaultHeaders &DefaultHeaders::Instance() { return default_headers_instance; }