aboutsummaryrefslogtreecommitdiffhomepage
path: root/development/gcov.html
diff options
context:
space:
mode:
authorjohannst <johannst@users.noreply.github.com>2024-02-15 23:29:57 +0000
committerjohannst <johannst@users.noreply.github.com>2024-02-15 23:29:57 +0000
commitbac8a5d2822835cf47175d1162030653fadd5c09 (patch)
tree28f312a114cf95ac799daac2a2caec4b8612d84d /development/gcov.html
parentbfc5ce4bc01e5eb28969eefcc01ecfefa2601fdf (diff)
downloadnotes-bac8a5d2822835cf47175d1162030653fadd5c09.tar.gz
notes-bac8a5d2822835cf47175d1162030653fadd5c09.zip
deploy: 4485708c972815bbb6df7f5a228683aa855d553d
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: