From: Matthias Maier Date: Mon, 14 Aug 2017 19:17:05 +0000 (-0500) Subject: Bugfix: Make library compile with -DWITH_NANOFLANN=ON X-Git-Tag: v9.0.0-rc1~1255^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4841%2Fhead;p=dealii.git Bugfix: Make library compile with -DWITH_NANOFLANN=ON We were missing a mandatory include in numerics/kdtree.h --- diff --git a/include/deal.II/numerics/kdtree.h b/include/deal.II/numerics/kdtree.h index 9e9556375a..7372f87ae3 100644 --- a/include/deal.II/numerics/kdtree.h +++ b/include/deal.II/numerics/kdtree.h @@ -22,6 +22,8 @@ #include +#include + DEAL_II_DISABLE_EXTRA_DIAGNOSTICS #include DEAL_II_ENABLE_EXTRA_DIAGNOSTICS @@ -245,7 +247,7 @@ unsigned int KDTree::size() const return adaptor->points.size(); else return 0; -}; +}