From: David Wells Date: Thu, 27 Jul 2017 02:45:20 +0000 (-0400) Subject: Use std::remove_cv instead of boost::remove_cv. X-Git-Tag: v9.0.0-rc1~1373^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=16d6be8f2677542427dc660bfe2e7e855c7c0bb9;p=dealii.git Use std::remove_cv instead of boost::remove_cv. --- diff --git a/include/deal.II/base/array_view.h b/include/deal.II/base/array_view.h index e629a12213..5b0d394d99 100644 --- a/include/deal.II/base/array_view.h +++ b/include/deal.II/base/array_view.h @@ -20,8 +20,7 @@ #include #include -#include - +#include #include DEAL_II_NAMESPACE_OPEN @@ -114,7 +113,7 @@ public: * non-@p const view to a @p const view, akin to converting a non-@p const * pointer to a @p const pointer. */ - ArrayView (const ArrayView::type> &view); + ArrayView (const ArrayView::type> &view); /** * Return the size (in elements) of the view of memory this object @@ -176,7 +175,7 @@ ArrayView::ArrayView(value_type *starting_element, template inline -ArrayView::ArrayView(const ArrayView::type> &view) +ArrayView::ArrayView(const ArrayView::type> &view) : starting_element (view.starting_element), n_elements(view.n_elements)