diff options
Diffstat (limited to 'development/gcov.html')
-rw-r--r-- | development/gcov.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/development/gcov.html b/development/gcov.html index 49e37bd..1b7742e 100644 --- a/development/gcov.html +++ b/development/gcov.html @@ -203,9 +203,9 @@ generated for a single file for example such as</p> void tell_me(int desc) { if (desc & 1) { - std::puts("this"); + std::puts("this"); } else { - std::puts("that"); + std::puts("that"); } } @@ -251,9 +251,9 @@ clean: -: 4: 2: 5:void tell_me(int desc) { 2: 6: if (desc & 1) { - 2: 7: std::puts("this"); + 2: 7: std::puts("this"); -: 8: } else { - #####: 9: std::puts("that"); + #####: 9: std::puts("that"); -: 10: } 2: 11:} -: 12: |