Small RAM savings (128b) in WebServer (#2178)

From https://github.com/espressif/arduino-esp32/pull/9594
This commit is contained in:
Earle F. Philhower, III 2024-05-30 10:38:50 -07:00 committed by GitHub
parent 679be8520f
commit fa2bfdc2ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -37,7 +37,7 @@
#define __STR(a) #a
#define _STR(a) __STR(a)
const char * _http_method_str[] = {
static const char * _http_method_str[] = {
#define XX(num, name, string) _STR(name),
HTTP_METHOD_MAP(XX)
#undef XX