Currently Any.h on any-ci branch contains following code:
while(*p && *p != '[')
There are clang-tidy warnings. clang_tidy_check.cmake stores code in string list (lines separated by ;). For some reason '[' has a special meaning leading to the next ; to be ignored so all following lines are joined. This creates a long string which slows down processing and it will time-out CI build.
Investigate '[' character meaning and escape it before processing so the CI works normally
Currently Any.h on any-ci branch contains following code:
while(*p && *p != '[')There are clang-tidy warnings. clang_tidy_check.cmake stores code in string list (lines separated by ;). For some reason '[' has a special meaning leading to the next ; to be ignored so all following lines are joined. This creates a long string which slows down processing and it will time-out CI build.
Investigate '[' character meaning and escape it before processing so the CI works normally