diff options
| author | 2021-07-12 03:18:33 -0300 | |
|---|---|---|
| committer | 2021-07-12 03:30:45 -0300 | |
| commit | 4503a4ac43bb2d8518ae09757a59450df2292f50 (patch) | |
| tree | d5d9051d570e34acb005a2282d95a1de4367c82d /src/web_service | |
| parent | boxcat: Silence -Wmaybe-uninitialized in httplib.h (diff) | |
| download | yuzu-4503a4ac43bb2d8518ae09757a59450df2292f50.tar.gz yuzu-4503a4ac43bb2d8518ae09757a59450df2292f50.tar.xz yuzu-4503a4ac43bb2d8518ae09757a59450df2292f50.zip | |
web_service: Silence -Wmaybe-uninitialized on httplib.h
Diffstat (limited to 'src/web_service')
| -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" |