From: Rene Gassmoeller Date: Thu, 10 Dec 2015 02:57:30 +0000 (-0600) Subject: Add entry to changes.h X-Git-Tag: v8.4.0-rc2~166^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1933%2Fhead;p=dealii.git Add entry to changes.h --- diff --git a/doc/news/changes.h b/doc/news/changes.h index fc61369fc3..577944c6b1 100644 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@ -183,6 +183,15 @@ inconvenience this causes.

General

    +
  1. New: There is now a function Utilities::to_string that works like + int_to_string, but is more safe for long integers, negative integers, and + also handles floating point numbers. The implementation of int_to_string + was changed to simply call to_string. int_to_string is kept for + compatibility, but should only be used for unsigned integers. +
    + (Rene Gassmoeller, 2015/12/09) +
  2. +
  3. New: The WorkStream class's design and implementation are now much better documented in the form of a @ref workstream_paper "preprint".