Files
tubestation/tools/clang-tidy/test/clang-analyzer-security.FloatLoopCounter.cpp

4 lines
64 B
C++

void test() {
for (float x = 0.1f; x <= 1.0f; x += 0.1f) {}
}