From: 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-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=508d051a3c37800418dd124c62b0807c91656a97;p=dealii-svn.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.