summaryrefslogtreecommitdiffstats
path: root/session.h
diff options
context:
space:
mode:
authorDave Brolley <brolley@redhat.com>2008-08-29 16:10:01 -0400
committerDave Brolley <brolley@redhat.com>2008-08-29 16:10:01 -0400
commit0cbf1fef13d340b4a6d01fe7242a6d0c098e8d6c (patch)
treeadd6c27ae60763af4c4a1aa90db7f65e465759e3 /session.h
parentd1f2fc72bf8506d0ac166cddb07576c7c4a1fea6 (diff)
parent8d142c018986acb256a08c1232f4f5ff0ee063df (diff)
downloadsystemtap-steved-0cbf1fef13d340b4a6d01fe7242a6d0c098e8d6c.tar.gz
systemtap-steved-0cbf1fef13d340b4a6d01fe7242a6d0c098e8d6c.tar.xz
systemtap-steved-0cbf1fef13d340b4a6d01fe7242a6d0c098e8d6c.zip
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Conflicts: ChangeLog
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;