summaryrefslogtreecommitdiffstats
path: root/coveragedb.h
diff options
context:
space:
mode:
authorddomingo <ddomingo@redhat.com>2008-09-02 09:59:14 +1000
committerddomingo <ddomingo@redhat.com>2008-09-02 09:59:14 +1000
commit6e2fec6199616ddd76cee89e7347af8b9bc75525 (patch)
tree12a39cdad7bc79ab3df6559b430e118ae9b0e738 /coveragedb.h
parentca947d81acf86cd346f139316e1287dcf42160de (diff)
parente491a713fa72f536955be51c0222a3f0b1befc82 (diff)
downloadsystemtap-steved-6e2fec6199616ddd76cee89e7347af8b9bc75525.tar.gz
systemtap-steved-6e2fec6199616ddd76cee89e7347af8b9bc75525.tar.xz
systemtap-steved-6e2fec6199616ddd76cee89e7347af8b9bc75525.zip
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
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; }
};