summaryrefslogtreecommitdiffstats
path: root/session.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 /session.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 'session.h')
-rw-r--r--session.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/session.h b/session.h
index 9f38372f..e8100cf5 100644
--- a/session.h
+++ b/session.h
@@ -52,16 +52,16 @@ struct module_cache;
struct statistic_decl
{
statistic_decl()
- : type(none),
+ : type(none),
linear_low(0), linear_high(0), linear_step(0)
- {}
+ {}
enum { none, linear, logarithmic } type;
int64_t linear_low;
int64_t linear_high;
int64_t linear_step;
bool operator==(statistic_decl const & other)
{
- return type == other.type
+ return type == other.type
&& linear_low == other.linear_low
&& linear_high == other.linear_high
&& linear_step == other.linear_step;