X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8d3fd4dafe26b531ab1392486871775d47126bff..50ac3e136606baf487eedb6d42729c4e46f55386:/src/mc/DwarfExpression.hpp?ds=sidebyside diff --git a/src/mc/DwarfExpression.hpp b/src/mc/DwarfExpression.hpp index 4b1f202f26..1bf89d8943 100644 --- a/src/mc/DwarfExpression.hpp +++ b/src/mc/DwarfExpression.hpp @@ -1,5 +1,4 @@ -/* Copyright (c) 2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2015-2017. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -72,7 +71,7 @@ public: static const std::size_t max_size = 64; private: // Values of the stack (the top is stack_[size_ - 1]): - uintptr_t stack_[max_size]; + uintptr_t stack_[max_size] {0}; size_t size_; public: ExpressionStack() : size_(0) {}