From: wolf Date: Mon, 14 Feb 2000 13:35:12 +0000 (+0000) Subject: Remove outdated comment. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa1d0a73240cd608c72651b94986a2f29ab2758e;p=dealii-svn.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(); -} +};