From: rschulz Date: Mon, 27 Jun 2005 12:18:20 +0000 (+0000) Subject: added missing std:: namespace reference where it was missing X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e567d43110b3d955e50bd54182cb7a7d0e5d000;p=dealii-svn.git added missing std:: namespace reference where it was missing git-svn-id: https://svn.dealii.org/trunk@10951 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/fe/fe_q.cc b/deal.II/deal.II/source/fe/fe_q.cc index 381f3e707f..9fbe6d77ac 100644 --- a/deal.II/deal.II/source/fe/fe_q.cc +++ b/deal.II/deal.II/source/fe/fe_q.cc @@ -632,13 +632,13 @@ FE_Q<3>::initialize_constraints () { const unsigned int n=this->degree-1; const double step=1./this->degree; - vector > line_support_points(n); + std::vector > line_support_points(n); for (unsigned int i=0; i qline(line_support_points); // auxiliary points in 2d - vector > p_line(n); + std::vector > p_line(n); // Add nodes of lines interior // in the "mother-face" @@ -673,7 +673,7 @@ FE_Q<3>::initialize_constraints () // Create constraints for // interior nodes - vector > inner_points(n*n); + std::vector > inner_points(n*n); for (unsigned int i=0, iy=1; iy<=n; ++iy) for (unsigned int ix=1; ix<=n; ++ix) inner_points[i++] = Point (ix*step, iy*step);