Skip to content
Snippets Groups Projects
Commit 568e5981 authored by Roman Stratiienko's avatar Roman Stratiienko
Browse files

drm_hwcomposer: CI: Remove -readability-use-anyofallof from COARSE list


We have single fail case of -readability-use-anyofallof.
Use NOLINTNEXTLINE comment instead.

Signed-off-by: default avatarRoman Stratiienko <roman.o.stratiienko@globallogic.com>
parent 25311dd6
No related branches found
No related tags found
No related merge requests found
......@@ -81,7 +81,6 @@ TIDY_CHECKS_COARSE := \
-readability-implicit-bool-conversion \
-readability-identifier-naming \
-readability-magic-numbers \
-readability-use-anyofallof \
.PHONY: all build tidy clean
......
......@@ -78,6 +78,7 @@ static uint32_t get_fourcc_yuv(uint32_t native, enum chroma_order chroma_order,
}
static bool is_yuv(uint32_t native) {
// NOLINTNEXTLINE(readability-use-anyofallof)
for (auto droid_yuv_format : kDroidYuvFormats)
if (droid_yuv_format.native == native)
return true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment