ci: Fail on warnings (#9668)

* ci: Fail on warnings

* misc: Fix compiler warnings
This commit is contained in:
Lee Bousfield
2025-03-18 18:46:28 -05:00
committed by GitHub
parent 03385fc07f
commit c8d80a2920
4 changed files with 14 additions and 7 deletions

View File

@@ -61,9 +61,10 @@ struct SVersionInfo {
// C ABI is needed to prevent symbol mangling, but we don't actually need C compatibility,
// so we ignore this warning about return types that are potentially incompatible with C.
// Clang supports this pragma too.
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wreturn-type-c-linkage"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wreturn-type-c-linkage"
#endif
class IHyprLayout;
class CWindow;
@@ -322,4 +323,6 @@ APICALL inline EXPORT const char* __hyprland_api_get_client_hash() {
}
// NOLINTEND
#pragma GCC diagnostic pop
#ifdef __clang__
#pragma clang diagnostic pop
#endif