From: wolf Date: Mon, 12 Mar 2001 16:14:16 +0000 (+0000) Subject: Fix a bug that I am puzzled about how it could pass compilation using X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9cc7d17545df0b3488c1aae5ec0acdb804bc7bae;p=dealii-svn.git Fix a bug that I am puzzled about how it could pass compilation using gcc2.95.2!? Probably because iterators there were pointers, but how could that have been promoted to an int? git-svn-id: https://svn.dealii.org/trunk@4191 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/fe/mapping_cartesian.cc b/deal.II/deal.II/source/fe/mapping_cartesian.cc index 805a8a4515..549ec5761e 100644 --- a/deal.II/deal.II/source/fe/mapping_cartesian.cc +++ b/deal.II/deal.II/source/fe/mapping_cartesian.cc @@ -235,7 +235,7 @@ MappingCartesian::compute_fill (const typename DoFHandler::cell_iterat } // furthermore, all normal // vectors on a face are equal - std::fill_n (normal_vectors.begin(), normal_vectors.end(), n); + std::fill (normal_vectors.begin(), normal_vectors.end(), n); } data.first_cell = false;