From: Wolfgang Bangerth Date: Fri, 19 Apr 2002 10:24:22 +0000 (+0000) Subject: Make parameter const to make Intel icc happier. X-Git-Tag: v8.0.0~18161 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d41867020905aebe190629a42bdf4aa0f0c97873;p=dealii.git Make parameter const to make Intel icc happier. git-svn-id: https://svn.dealii.org/trunk@5687 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/source/function_lib_cutoff.cc b/deal.II/base/source/function_lib_cutoff.cc index 8a339bdb5c..53660bacb8 100644 --- a/deal.II/base/source/function_lib_cutoff.cc +++ b/deal.II/base/source/function_lib_cutoff.cc @@ -76,7 +76,7 @@ namespace Functions CutOffFunctionLinfty::CutOffFunctionLinfty (const double r, const Point p, const unsigned int n_components, - unsigned int select) + const unsigned int select) : CutOffFunctionBase (r, p, n_components, select) {}