From 16d6be8f2677542427dc660bfe2e7e855c7c0bb9 Mon Sep 17 00:00:00 2001 From: David Wells Date: Wed, 26 Jul 2017 22:45:20 -0400 Subject: [PATCH] Use std::remove_cv instead of boost::remove_cv. --- include/deal.II/base/array_view.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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) -- 2.39.5