summaryrefslogtreecommitdiffstats
path: root/coveragedb.h
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2008-08-28 12:14:49 -0400
committerFrank Ch. Eigler <fche@elastic.org>2008-08-28 12:14:49 -0400
commitdff50e09fea194433e15aa6137c835cedcf94a58 (patch)
tree6c66841f4396dbeae937133abac8ed51e1ef68ce /coveragedb.h
parent57148ee74505bdc3f33746563a998a9832924a41 (diff)
downloadsystemtap-steved-dff50e09fea194433e15aa6137c835cedcf94a58.tar.gz
systemtap-steved-dff50e09fea194433e15aa6137c835cedcf94a58.tar.xz
systemtap-steved-dff50e09fea194433e15aa6137c835cedcf94a58.zip
trailing whitespace removal, as approved by emacs
(add-hook 'before-save-hook 'delete-trailing-whitespace)
Diffstat (limited to 'coveragedb.h')
-rw-r--r--coveragedb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/coveragedb.h b/coveragedb.h
index ccf1911d..df5782ca 100644
--- a/coveragedb.h
+++ b/coveragedb.h
@@ -62,11 +62,11 @@ public:
int compiled;
int executed;
- coverage_element() { line = 0; col = 0;
+ coverage_element() { line = 0; col = 0;
compiled = 0; executed = 0; }
coverage_element(source_loc &place) {
- file = place.file; line = place.line; col = place.column;
+ file = place.file; line = place.line; col = place.column;
compiled = 0; executed = 0; }
};