From: Jean-Paul Pelteret Date: Fri, 2 Feb 2018 06:15:25 +0000 (+0100) Subject: Change the default value of a parameter from 0 to nullptr. X-Git-Tag: v9.0.0-rc1~481^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F5842%2Fhead;p=dealii.git Change the default value of a parameter from 0 to nullptr. --- diff --git a/include/deal.II/base/numbers.h b/include/deal.II/base/numbers.h index 057baf07ea..ba588d6002 100644 --- a/include/deal.II/base/numbers.h +++ b/include/deal.II/base/numbers.h @@ -483,7 +483,7 @@ namespace internal !std::is_same::type,typename std::decay::type>::value && !std::is_constructible::value && is_explicitly_convertible::value - >::type * = 0) + >::type * = nullptr) { return static_cast(f); }