From: bangerth Date: Thu, 24 Sep 2009 02:41:05 +0000 (+0000) Subject: Fix a bug with lost data in LogStream. Funny how this has gone X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=51af7edf337d029903b802078b148ebb94cd6893;p=dealii-svn.git Fix a bug with lost data in LogStream. Funny how this has gone unnoticed for more than 10 years now... git-svn-id: https://svn.dealii.org/trunk@19526 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/news/changes.h b/deal.II/doc/news/changes.h index 1f2cbcc61f..c8bddda154 100644 --- a/deal.II/doc/news/changes.h +++ b/deal.II/doc/news/changes.h @@ -215,13 +215,22 @@ inconvenience this causes.

base

    +
  1. +

    + Fixed: If anything had been put into a LogStream object without flushing + it with std::endl before the destruction of the log stream, it was lost. + This is now fixed. +
    + (WB 2009/09/23) +

    +
  2. +
  3. New: SymmetricTensor::unrolled_index() returns the index of an element of a symmetric tensor within an unrolled vector.
    (WB 2009/09/23)

  4. -
  5. New: classes NamedData and NamedSelection provide an interface to store and retrieve data objects with name identifiers.