Warning, /sdk/cutehmi/extensions/CuteHMI/Test.0/dev/CuteHMI.Test-2.workaround.Qt.Qt5.txt is written in an unsupported language. File is not indexed.

0001 Problem:
0002 
0003 In Qt 6.0 the return type of containers size() function has been changed from `int` to `qsizetype`. This leads to template argument
0004 deduction failure due to ambiguity as one of the parameters is `qsizetype` and the other one is `int`.
0005 
0006 Workaround:
0007 
0008 Workaround is to use static_cast to disambiguate.