Closed copybara-service[bot] closed 1 year ago
Convert 1-bit signed char bitfield _firstTouchForView to 1-bit unsigned char bitfield
Fixes -Wsingle-bit-bitfield-constant-conversion error:
GREYTouchInjector.m:342:28: error: implicit truncation from 'int' to a one-bit wide bit-field changes value from 1 to -1 [-Werror,-Wsingle-bit-bitfield-constant-conversion] flags._firstTouchForView = 1;
Convert 1-bit signed char bitfield _firstTouchForView to 1-bit unsigned char bitfield
Fixes -Wsingle-bit-bitfield-constant-conversion error:
GREYTouchInjector.m:342:28: error: implicit truncation from 'int' to a one-bit wide bit-field changes value from 1 to -1 [-Werror,-Wsingle-bit-bitfield-constant-conversion] flags._firstTouchForView = 1;