aboutsummaryrefslogtreecommitdiffhomepage
path: root/development/gcov.html
diff options
context:
space:
mode:
Diffstat (limited to 'development/gcov.html')
-rw-r--r--development/gcov.html8
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 &amp; 1) {
- std::puts(&quot;this&quot;);
+ std::puts("this");
} else {
- std::puts(&quot;that&quot;);
+ std::puts("that");
}
}
@@ -251,9 +251,9 @@ clean:
-: 4:
2: 5:void tell_me(int desc) {
2: 6: if (desc &amp; 1) {
- 2: 7: std::puts(&quot;this&quot;);
+ 2: 7: std::puts("this");
-: 8: } else {
- #####: 9: std::puts(&quot;that&quot;);
+ #####: 9: std::puts("that");
-: 10: }
2: 11:}
-: 12: