From: Wolfgang Bangerth Date: Thu, 6 Sep 2012 21:36:36 +0000 (+0000) Subject: Document the Clang fix for Threads::Task when accessing the return value. The corresp... X-Git-Tag: v8.0.0~2162 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33be81bb82092fb1508d0e67d224acccd643d334;p=dealii.git Document the Clang fix for Threads::Task when accessing the return value. The corresponding patch accidentally got committed as part of r26233. git-svn-id: https://svn.dealii.org/trunk@26245 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/news/changes.h b/deal.II/doc/news/changes.h index 62ef820261..48e7670d5c 100644 --- a/deal.II/doc/news/changes.h +++ b/deal.II/doc/news/changes.h @@ -50,6 +50,12 @@ never working correctly and it is not used.

Specific improvements

    +
  1. Fixed: The Clang C++ compiler had some trouble dealing with obtaining +the return value of a Threads::Task object, due to a compiler bug in +dealing with friend declarations. This is now fixed. +
    +(Wolfgang Bangerth, 2012/09/04) +
  2. Fixed: When applying a ConstraintMatrix to a block matrix where the last few rows are empty, we ran into an unrelated assertion. This is now fixed.