From: Timo Heister Date: Fri, 31 Jan 2014 14:05:39 +0000 (+0000) Subject: avoid fmin with unsigned int because it is not defined for ints before c++11 X-Git-Tag: v8.2.0-rc1~926 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a458710be0382b09573dca05e6d74aa87c0c2729;p=dealii.git avoid fmin with unsigned int because it is not defined for ints before c++11 git-svn-id: https://svn.dealii.org/trunk@32356 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/base/event.h b/deal.II/include/deal.II/base/event.h index e27184e3ca..1cf7b27e73 100644 --- a/deal.II/include/deal.II/base/event.h +++ b/deal.II/include/deal.II/base/event.h @@ -202,7 +202,7 @@ namespace Algorithms const unsigned int n = flags.size(); const unsigned int m = event.flags.size(); - const unsigned int n_min = fmin(n, m); + const unsigned int n_min = (n