You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 23, 2023. It is now read-only.
22:29:39,668 INFO - vaapipostprocess_scaler_unittest.cpp: In static member function 'static void YamiMediaCodec::VaapiPostProcessScalerTest::checkColorBalanceFilter(YamiMediaCodec::VaapiPostProcessScaler&, VppColorBalanceMode)':
22:29:39,668 INFO - vaapipostprocess_scaler_unittest.cpp:110:12: error: suggest explicit braces to avoid ambiguous 'else' [-Werror=dangling-else]
22:29:39,668 INFO - if (COLORBALANCE_NONE != mode)
22:29:39,668 INFO - ^
The text was updated successfully, but these errors were encountered:
This is a side-effect from the GTEST macros not enclosing the entire macro definition inside braces. We should only have to add braces in our if statement to fix this (e.g. if(...) { ... })
The text was updated successfully, but these errors were encountered: