Skip to content

Commit

Permalink
[Core] Fix typo in DISABLE_WARNING_UNUSED_PARAMETERS (rdkcentral#1430)
Browse files Browse the repository at this point in the history
Co-authored-by: Pierre Wielders <[email protected]>
  • Loading branch information
2 people authored and bramoosterhuis committed Apr 26, 2024
1 parent 5fcce66 commit 416d6e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/core/Portability.h
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@
#if defined(__clang__) || (__GNUC__ >= 4)
#define DISABLE_WARNING_MISSING_FIELD_INITIALIZERS PUSH_WARNING_ARG_("-Wmissing-field-initializers")
#define DISABLE_WARNING_UNUSED_VARIABLES PUSH_WARNING_ARG_("-Wunused-variable")
#define DISABLE_WARNING_UNUSED_PARAMTERS PUSH_WARNING_ARG_("-Wunused-parameter")
#define DISABLE_WARNING_UNUSED_PARAMETERS PUSH_WARNING_ARG_("-Wunused-parameter")
#define DISABLE_WARNING_UNUSED_FUNCTIONS PUSH_WARNING_ARG_("-Wunused-function")
#define DISABLE_WARNING_UNUSED_RESULT PUSH_WARNING_ARG_("-Wunused-result")
#define DISABLE_WARNING_DEPRECATED_USE PUSH_WARNING_ARG_("-Wdeprecated-declarations")
Expand Down

0 comments on commit 416d6e5

Please sign in to comment.