Community
Participate
Working Groups
Build Identifier: Below syntax cannot be parsed correctly, will report semantic error. for (uint32 i = 0; i < static_cast<uint32>i; i++){ } Upper is a pseudo code, the point is the static_cast keyword is not parsed correctly inside a for statement. Reproducible: Always Steps to Reproduce: Below syntax cannot be parsed correctly, will report semantic error. for (uint32 i = 0; i < static_cast<uint32>i; i++){ } Upper is a pseudo code, the point is the static_cast keyword is not parsed correctly inside a for statement.
static_cast<xxx> requires parenthesis around its argument: static_case<uint32>(i)