From: David Wells Date: Sun, 29 Apr 2018 00:39:43 +0000 (-0400) Subject: Remove some references to C++11 support. X-Git-Tag: v9.0.0-rc1~76^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F6382%2Fhead;p=dealii.git Remove some references to C++11 support. --- diff --git a/doc/developers/cmake-internals.html b/doc/developers/cmake-internals.html index 46a001e5cc..f728d59f5e 100644 --- a/doc/developers/cmake-internals.html +++ b/doc/developers/cmake-internals.html @@ -190,7 +190,7 @@ SET_TARGET_PROPERTIES(${DEAL_II_BASE_NAME}${DEAL_II_${build}_SUFFIX} # ENABLE_IF_SUPPORTED(DEAL_II_CXX_FLAGS "-march=native") # ENDIF() # -# Checks for compiler features (such as C++11 support) and compiler +# Checks for compiler features (such as C++14 support) and compiler # specific bugs that # - usually set up further configuration (such as preprocessor # definitions) diff --git a/examples/step-13/step-13.cc b/examples/step-13/step-13.cc index 204d24a00c..91a982ff8f 100644 --- a/examples/step-13/step-13.cc +++ b/examples/step-13/step-13.cc @@ -857,22 +857,19 @@ namespace Step13 // std::placeholders::_1) then calling p(1,2) will // result in calling f(2,1). // - // @note Once deal.II can rely on every compiler being able to - // fully understand the syntax of the C++11 standard, one can - // use C++'s version of std::bind is to use C++'s + // version of lambda - // functions to achieve the same goal. In essence, a lambda - // function is a function without a name that is defined right - // at the one place where it is going to be used -- i.e., where - // we pass the third and fourth argument to WorkStream::run. The - // functions one would define in these locations would take 3 - // and 1 arguments, respectively, and all they do is call + // functions. In essence, a lambda function is a function without a + // name that is defined right at the one place where it is going to be + // used -- i.e., where we pass the third and fourth argument to + // WorkStream::run. The functions one would define in these locations + // would take 3 and 1 arguments, respectively, and all they do is call // Solver::local_assemble_matrix and - // Solver::copy_local_to_global with the required - // number of arguments, utilizing what the lambda function has - // gotten as arguments itself. We won't show the syntax this - // would require since it is no less confusing than the one used - // above. + // Solver::copy_local_to_global with the required number of + // arguments, utilizing what the lambda function has gotten as arguments + // itself. We won't show the syntax this would require since it is no + // less confusing than the one used above. // At this point, we have assembled the matrix and condensed // it. The right hand side may or may not have been completely diff --git a/include/deal.II/dofs/dof_handler.h b/include/deal.II/dofs/dof_handler.h index f988909cb5..52eda97d20 100644 --- a/include/deal.II/dofs/dof_handler.h +++ b/include/deal.II/dofs/dof_handler.h @@ -685,7 +685,6 @@ public: * ...do the local integration on 'cell'...; * } * @endcode - * To use this feature, you need a compiler that supports C++11. * * @return The half open range [this->begin_active(), * this->end()) diff --git a/include/deal.II/lac/block_vector_base.h b/include/deal.II/lac/block_vector_base.h index 5b2db60fd0..7559bcebe6 100644 --- a/include/deal.II/lac/block_vector_base.h +++ b/include/deal.II/lac/block_vector_base.h @@ -1032,8 +1032,7 @@ namespace internal { // Only permit copy-constructing const iterators from non-const // iterators, and not vice versa (i.e., Constness must always be - // true). As mentioned above, try to check this at compile time if C++11 - // support is available. + // true). static_assert(Constness == true, "Constructing a non-const iterator from a const iterator " "does not make sense."); diff --git a/include/deal.II/lac/read_write_vector.h b/include/deal.II/lac/read_write_vector.h index b5b5359f0b..2a89b6223c 100644 --- a/include/deal.II/lac/read_write_vector.h +++ b/include/deal.II/lac/read_write_vector.h @@ -232,8 +232,8 @@ namespace LinearAlgebra * }; * @endcode * - * @note This function requires C++11 and read_write_vector.templates.h - * needs to be included. + * @note This function requires that the header read_write_vector.templates.h + * be included. */ template void apply(const Functor &func); diff --git a/source/hp/dof_handler.cc b/source/hp/dof_handler.cc index b3b90b4625..824ce7416d 100644 --- a/source/hp/dof_handler.cc +++ b/source/hp/dof_handler.cc @@ -42,7 +42,6 @@ DEAL_II_NAMESPACE_OPEN // The following is necessary for compilation under Visual Studio which is unable to correctly // distinguish between dealii::DoFHandler and dealii::hp::DoFHandler. // Plus it makes code in dof_handler.cc easier to read. -// Requires C++11 support which is in Visual Studio 2013 and newer. #if defined(_MSC_VER) && (_MSC_VER >= 1800) template using HpDoFHandler = ::dealii::hp::DoFHandler; #else