From: Wolfgang Bangerth Date: Wed, 17 Jan 2001 08:27:47 +0000 (+0000) Subject: Prefix functions and classes with std:: where this is necessary for the forthcoming... X-Git-Tag: v8.0.0~19816 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4b4fd1aad95b4296e460fbea62696919f2144f46;p=dealii.git Prefix functions and classes with std:: where this is necessary for the forthcoming future gcc 3.0 release, and mandated by the C++ standard. git-svn-id: https://svn.dealii.org/trunk@3705 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/news/2000/3.0.0-vs-3.1.0.html b/deal.II/doc/news/2000/3.0.0-vs-3.1.0.html index 38ba2b05dd..f21b2852eb 100644 --- a/deal.II/doc/news/2000/3.0.0-vs-3.1.0.html +++ b/deal.II/doc/news/2000/3.0.0-vs-3.1.0.html @@ -26,6 +26,19 @@ documentation, etc.

General

    +
  1. + New: All identifiers that the C++ standard (see + this page for the public draft -- the + standard itself is not available online for copyright reasons) + mandates to be in namespace std:: are correctly + prefixed by the namespace name. While previous gcc compilers + accepted these names also without the prefix, gcc 3.0 will + require them, as do some commercial compilers. +
    + (WB 2001/01/16) +

    +
  2. New: In multithreading mode, the compile flags now also have _REENTRANT defined. If this flag diff --git a/deal.II/doc/news/news.html b/deal.II/doc/news/news.html index b749fec2b4..1aa5b34ac4 100644 --- a/deal.II/doc/news/news.html +++ b/deal.II/doc/news/news.html @@ -53,6 +53,21 @@ here. +

    + 2001/01/16: Correct namespace std:: + scoping +
    +
    + All identifiers that the C++ standard (see + this page for the public draft -- the + standard itself is not available online for copyright reasons) + mandates to be in namespace std:: are correctly + prefixed by the namespace name. While previous gcc compilers + accepted these names also without the prefix, gcc 3.0 will + require them, as do some commercial compilers. +
    +
    2000/11/27: Memory consumption monitoring