aboutsummaryrefslogtreecommitdiff
path: root/Carpet/Carpet
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2012-11-25 11:17:31 -0500
committerErik Schnetter <schnetter@gmail.com>2012-11-25 11:17:31 -0500
commit4236197781bcfa9214d7f81596dbae20b19cafc7 (patch)
tree8d176f8b6902cc70060257b88549d79b35877de8 /Carpet/Carpet
parentc4ca3950eea5b679e8fda9a8c643601b2299c95e (diff)
Carpet: Initialise TimerNode fields in correct order
Diffstat (limited to 'Carpet/Carpet')
-rw-r--r--Carpet/Carpet/src/TimerNode.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Carpet/Carpet/src/TimerNode.cc b/Carpet/Carpet/src/TimerNode.cc
index 2ef20fcfd..fd242bc75 100644
--- a/Carpet/Carpet/src/TimerNode.cc
+++ b/Carpet/Carpet/src/TimerNode.cc
@@ -42,8 +42,8 @@ namespace Carpet {
using namespace std;
- TimerNode::TimerNode(TimerTree *tree, string name): d_name(name), d_parent(0),
- timer(0), d_tree(tree), d_running(0)
+ TimerNode::TimerNode(TimerTree *tree, string name):
+ d_name(name), d_parent(0), d_tree(tree), d_running(0), timer(0)
{
}