From 11714aaf76ee94df521ccdeeeaecaa31a1c662ca Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 4 Nov 2016 14:35:12 -0600 Subject: [PATCH] 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. --- source/base/logstream.cc | 1 + 1 file changed, 1 insertion(+) 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) { -- 2.39.5