gecko-dev/tools/clang-tidy/test/bugprone-incorrect-roundings.cpp
2018-10-02 14:10:32 +00:00

7 lines
No EOL
52 B
C++

void f1()
{
double d;
int x;
x = (d + 0.5);
}