From: Wolfgang Bangerth Date: Fri, 8 Apr 2005 20:55:22 +0000 (+0000) Subject: No point in passing an integer arg by reference. X-Git-Tag: v8.0.0~14102 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=15a8673fe0f8056a8971538fb0620a2516dfbef2;p=dealii.git No point in passing an integer arg by reference. git-svn-id: https://svn.dealii.org/trunk@10445 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/dofs/dof_constraints.templates.h b/deal.II/deal.II/include/dofs/dof_constraints.templates.h index e34008c40d..d444870d1a 100644 --- a/deal.II/deal.II/include/dofs/dof_constraints.templates.h +++ b/deal.II/deal.II/include/dofs/dof_constraints.templates.h @@ -35,7 +35,7 @@ namespace inline bool is_fixed (const std::map &fixed_dofs, - const unsigned int &i) + const unsigned int i) { return (fixed_dofs.find(i) != fixed_dofs.end()); }