From: Wolfgang Bangerth Date: Mon, 14 Feb 2000 13:35:12 +0000 (+0000) Subject: Remove outdated comment. X-Git-Tag: v8.0.0~20959 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bbbd72104d95cb9b3f2656dc812b31e655b4755e;p=dealii.git Remove outdated comment. git-svn-id: https://svn.dealii.org/trunk@2401 0785d39b-7218-0410-832d-ea1e28bc413d --- 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(); -} +};