diff options
Diffstat (limited to '')
| -rw-r--r-- | src/web_service/web_backend.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/web_service/web_backend.cpp b/src/web_service/web_backend.cpp index e04f7dfc6..b1e02c57a 100644 --- a/src/web_service/web_backend.cpp +++ b/src/web_service/web_backend.cpp | |||
| @@ -8,7 +8,17 @@ | |||
| 8 | #include <string> | 8 | #include <string> |
| 9 | 9 | ||
| 10 | #include <fmt/format.h> | 10 | #include <fmt/format.h> |
| 11 | |||
| 12 | #ifdef __GNUC__ | ||
| 13 | #pragma GCC diagnostic push | ||
| 14 | #ifndef __clang__ | ||
| 15 | #pragma GCC diagnostic ignored "-Wmaybe-uninitialized" | ||
| 16 | #endif | ||
| 17 | #endif | ||
| 11 | #include <httplib.h> | 18 | #include <httplib.h> |
| 19 | #ifdef __GNUC__ | ||
| 20 | #pragma GCC diagnostic pop | ||
| 21 | #endif | ||
| 12 | 22 | ||
| 13 | #include "common/logging/log.h" | 23 | #include "common/logging/log.h" |
| 14 | #include "web_service/web_backend.h" | 24 | #include "web_service/web_backend.h" |