File tree 3 files changed +8
-0
lines changed
3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ Checks: >
22
22
-readability-function-cognitive-complexity,
23
23
-readability-isolate-declaration,
24
24
-readability-magic-numbers,
25
+ -readability-math-missing-parentheses,
25
26
-readability-uppercase-literal-suffix
26
27
CheckOptions :
27
28
- key : readability-braces-around-statements.ShortStatementLines
Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ if (CMAKE_C_COMPILER_ID MATCHES "Clang")
72
72
# there appears to be no solution for C pointers.
73
73
set_property (TARGET glfm PROPERTY COMPILE_OPTIONS -Weverything -Wwrite-strings -Wno-unknown-warning-option
74
74
-Wno-padded -Wno-covered-switch-default -Wno-declaration-after-statement -Wno-unsafe-buffer-usage
75
+ -Wno-missing-include -dirs
75
76
${GLFM_COMPILE_OPTIONS} )
76
77
elseif (CMAKE_C_COMPILER_ID MATCHES "GNU" )
77
78
set_property (TARGET glfm PROPERTY COMPILE_OPTIONS -Wall -Wextra -Wpedantic -Wwrite-strings ${GLFM_COMPILE_OPTIONS} )
Original file line number Diff line number Diff line change @@ -1987,6 +1987,12 @@ - (BOOL)handlePress:(UIPress *)press withAction:(GLFMKeyAction)action {
1987
1987
case UIPressTypePageDown:
1988
1988
keyCode = GLFMKeyCodePageDown;
1989
1989
break ;
1990
+ #if __TV_OS_VERSION_MAX_ALLOWED >= __TVOS_18_1
1991
+ case UIPressTypeTVRemoteOneTwoThree:
1992
+ // Fallthrough
1993
+ case UIPressTypeTVRemoteFourColors:
1994
+ // Fallthrough
1995
+ #endif
1990
1996
default :
1991
1997
keyCode = GLFMKeyCodeUnknown;
1992
1998
break ;
You can’t perform that action at this time.
0 commit comments