Merge pull request #11338 from comex/warning-fixes-august-2023
Warnings cleanup for GCC 13 and Clang 16
This commit is contained in:
commit
1ac2615adb
|
@ -42,6 +42,11 @@ endif()
|
||||||
# mbedtls
|
# mbedtls
|
||||||
add_subdirectory(mbedtls)
|
add_subdirectory(mbedtls)
|
||||||
target_include_directories(mbedtls PUBLIC ./mbedtls/include)
|
target_include_directories(mbedtls PUBLIC ./mbedtls/include)
|
||||||
|
if (NOT MSVC)
|
||||||
|
target_compile_options(mbedcrypto PRIVATE
|
||||||
|
-Wno-unused-but-set-variable
|
||||||
|
-Wno-string-concatenation)
|
||||||
|
endif()
|
||||||
|
|
||||||
# MicroProfile
|
# MicroProfile
|
||||||
add_library(microprofile INTERFACE)
|
add_library(microprofile INTERFACE)
|
||||||
|
@ -94,6 +99,12 @@ if (ENABLE_CUBEB AND NOT TARGET cubeb::cubeb)
|
||||||
set(BUILD_TOOLS OFF)
|
set(BUILD_TOOLS OFF)
|
||||||
add_subdirectory(cubeb)
|
add_subdirectory(cubeb)
|
||||||
add_library(cubeb::cubeb ALIAS cubeb)
|
add_library(cubeb::cubeb ALIAS cubeb)
|
||||||
|
if (NOT MSVC)
|
||||||
|
if (TARGET speex)
|
||||||
|
target_compile_options(speex PRIVATE -Wno-sign-compare)
|
||||||
|
endif()
|
||||||
|
target_compile_options(cubeb PRIVATE -Wno-implicit-const-int-float-conversion)
|
||||||
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# DiscordRPC
|
# DiscordRPC
|
||||||
|
@ -151,6 +162,9 @@ endif()
|
||||||
if (NOT TARGET LLVM::Demangle)
|
if (NOT TARGET LLVM::Demangle)
|
||||||
add_library(demangle demangle/ItaniumDemangle.cpp)
|
add_library(demangle demangle/ItaniumDemangle.cpp)
|
||||||
target_include_directories(demangle PUBLIC ./demangle)
|
target_include_directories(demangle PUBLIC ./demangle)
|
||||||
|
if (NOT MSVC)
|
||||||
|
target_compile_options(demangle PRIVATE -Wno-deprecated-declarations) # std::is_pod
|
||||||
|
endif()
|
||||||
add_library(LLVM::Demangle ALIAS demangle)
|
add_library(LLVM::Demangle ALIAS demangle)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
|
@ -114,16 +114,19 @@ else()
|
||||||
-Wno-attributes
|
-Wno-attributes
|
||||||
-Wno-invalid-offsetof
|
-Wno-invalid-offsetof
|
||||||
-Wno-unused-parameter
|
-Wno-unused-parameter
|
||||||
|
|
||||||
$<$<CXX_COMPILER_ID:Clang>:-Wno-braced-scalar-init>
|
|
||||||
$<$<CXX_COMPILER_ID:Clang>:-Wno-unused-private-field>
|
|
||||||
$<$<CXX_COMPILER_ID:Clang>:-Werror=shadow-uncaptured-local>
|
|
||||||
$<$<CXX_COMPILER_ID:Clang>:-Werror=implicit-fallthrough>
|
|
||||||
$<$<CXX_COMPILER_ID:Clang>:-Werror=type-limits>
|
|
||||||
$<$<CXX_COMPILER_ID:AppleClang>:-Wno-braced-scalar-init>
|
|
||||||
$<$<CXX_COMPILER_ID:AppleClang>:-Wno-unused-private-field>
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if (CMAKE_CXX_COMPILER_ID MATCHES Clang) # Clang or AppleClang
|
||||||
|
add_compile_options(
|
||||||
|
-Wno-braced-scalar-init
|
||||||
|
-Wno-unused-private-field
|
||||||
|
-Wno-nullability-completeness
|
||||||
|
-Werror=shadow-uncaptured-local
|
||||||
|
-Werror=implicit-fallthrough
|
||||||
|
-Werror=type-limits
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
if (ARCHITECTURE_x86_64)
|
if (ARCHITECTURE_x86_64)
|
||||||
add_compile_options("-mcx16")
|
add_compile_options("-mcx16")
|
||||||
add_compile_options("-fwrapv")
|
add_compile_options("-fwrapv")
|
||||||
|
|
|
@ -460,11 +460,6 @@ S operator&(const S& i, const swap_struct_t<T, F> v) {
|
||||||
return i & v.swap();
|
return i & v.swap();
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename S, typename T, typename F>
|
|
||||||
S operator&(const swap_struct_t<T, F> v, const S& i) {
|
|
||||||
return static_cast<S>(v.swap() & i);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Comparison
|
// Comparison
|
||||||
template <typename S, typename T, typename F>
|
template <typename S, typename T, typename F>
|
||||||
bool operator<(const S& p, const swap_struct_t<T, F> v) {
|
bool operator<(const S& p, const swap_struct_t<T, F> v) {
|
||||||
|
|
|
@ -835,15 +835,15 @@ public:
|
||||||
return input_engine->SupportsNfc(identifier);
|
return input_engine->SupportsNfc(identifier);
|
||||||
}
|
}
|
||||||
|
|
||||||
Common::Input::NfcState StartNfcPolling() {
|
Common::Input::NfcState StartNfcPolling() override {
|
||||||
return input_engine->StartNfcPolling(identifier);
|
return input_engine->StartNfcPolling(identifier);
|
||||||
}
|
}
|
||||||
|
|
||||||
Common::Input::NfcState StopNfcPolling() {
|
Common::Input::NfcState StopNfcPolling() override {
|
||||||
return input_engine->StopNfcPolling(identifier);
|
return input_engine->StopNfcPolling(identifier);
|
||||||
}
|
}
|
||||||
|
|
||||||
Common::Input::NfcState ReadAmiiboData(std::vector<u8>& out_data) {
|
Common::Input::NfcState ReadAmiiboData(std::vector<u8>& out_data) override {
|
||||||
return input_engine->ReadAmiiboData(identifier, out_data);
|
return input_engine->ReadAmiiboData(identifier, out_data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -852,11 +852,11 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
Common::Input::NfcState ReadMifareData(const Common::Input::MifareRequest& request,
|
Common::Input::NfcState ReadMifareData(const Common::Input::MifareRequest& request,
|
||||||
Common::Input::MifareRequest& out_data) {
|
Common::Input::MifareRequest& out_data) override {
|
||||||
return input_engine->ReadMifareData(identifier, request, out_data);
|
return input_engine->ReadMifareData(identifier, request, out_data);
|
||||||
}
|
}
|
||||||
|
|
||||||
Common::Input::NfcState WriteMifareData(const Common::Input::MifareRequest& request) {
|
Common::Input::NfcState WriteMifareData(const Common::Input::MifareRequest& request) override {
|
||||||
return input_engine->WriteMifareData(identifier, request);
|
return input_engine->WriteMifareData(identifier, request);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
#if defined(__GNUC__) || defined(__clang__)
|
#if defined(__GNUC__) || defined(__clang__)
|
||||||
#pragma GCC diagnostic push
|
#pragma GCC diagnostic push
|
||||||
#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"
|
#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"
|
||||||
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations" // for deprecated OpenSSL functions
|
||||||
#endif
|
#endif
|
||||||
#include <jwt/jwt.hpp>
|
#include <jwt/jwt.hpp>
|
||||||
#if defined(__GNUC__) || defined(__clang__)
|
#if defined(__GNUC__) || defined(__clang__)
|
||||||
|
|
Reference in New Issue