From fa1d0a73240cd608c72651b94986a2f29ab2758e Mon Sep 17 00:00:00 2001 From: wolf Date: Mon, 14 Feb 2000 13:35:12 +0000 Subject: [PATCH] Remove outdated comment. git-svn-id: https://svn.dealii.org/trunk@2401 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/source/log.cc | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/deal.II/base/source/log.cc b/deal.II/base/source/log.cc index 1b089c3d6f..2ce4328682 100644 --- a/deal.II/base/source/log.cc +++ b/deal.II/base/source/log.cc @@ -59,21 +59,18 @@ LogStream::get_file_stream() void LogStream::push (const string& text) { - // strange enough: if make this - // function non-inline with - // gcc2.8, we get very strange - // compiler errors... string pre=prefixes.top(); pre += text; pre += string(":"); prefixes.push(pre); -} +}; + void LogStream::pop () { prefixes.pop(); -} +}; -- 2.39.5