From: Wolfgang Bangerth Date: Fri, 4 Nov 2016 20:35:12 +0000 (-0600) Subject: Initialize a member variable of LogStream. X-Git-Tag: v8.5.0-rc1~467^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=11714aaf76ee94df521ccdeeeaecaa31a1c662ca;p=dealii.git Initialize a member variable of LogStream. The variable really was never initialized, even though some output depended on it. I suspect that it just happened to always be initialized to 'false'. Make this explicit. --- diff --git a/source/base/logstream.cc b/source/base/logstream.cc index 22159aaa6f..c6480577f7 100644 --- a/source/base/logstream.cc +++ b/source/base/logstream.cc @@ -57,6 +57,7 @@ LogStream::LogStream() double_threshold(0.), float_threshold(0.), offset(0), + print_thread_id(false), old_cerr(0), at_newline(true) {