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