C++: change floating point value in test

This commit is contained in:
Robert Marsh
2018-08-27 10:05:09 -07:00
parent e0af30a789
commit 3a5eb03055
2 changed files with 3 additions and 3 deletions

View File

@@ -52,7 +52,7 @@
| test.cpp:115:13:115:15 | 0.0 | 115:c13-c15 116:c7-c9 |
| test.cpp:115:13:115:15 | (float)... | 115:c13-c15 116:c7-c9 |
| test.cpp:116:3:116:3 | y | 116:c3-c3 117:c3-c3 118:c3-c3 |
| test.cpp:117:7:117:9 | 0.10000000000000001 | 117:c7-c9 118:c7-c9 |
| test.cpp:117:7:117:9 | 0.5 | 117:c7-c9 118:c7-c9 |
| test.cpp:117:7:117:9 | (float)... | 117:c7-c9 118:c7-c9 |
| test.cpp:122:3:122:8 | call to test07 | 122:c3-c8 123:c3-c8 |
| test.cpp:125:3:125:11 | call to my_strspn | 125:c3-c11 126:c3-c11 |

View File

@@ -114,8 +114,8 @@ void test07() {
float y = 0.0;
y = 0.0;
y = 0.1;
y = 0.1;
y = 0.5;
y = 0.5;
}
void test08() {