]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
added missing std:: namespace reference where it was missing
authorrschulz <rschulz@0785d39b-7218-0410-832d-ea1e28bc413d>
Mon, 27 Jun 2005 12:18:20 +0000 (12:18 +0000)
committerrschulz <rschulz@0785d39b-7218-0410-832d-ea1e28bc413d>
Mon, 27 Jun 2005 12:18:20 +0000 (12:18 +0000)
git-svn-id: https://svn.dealii.org/trunk@10951 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/deal.II/source/fe/fe_q.cc

index 381f3e707fad038aa007f8d81cb138ff6f34fc23..9fbe6d77acedcd5698a1815883cca4140da69340 100644 (file)
@@ -632,13 +632,13 @@ FE_Q<3>::initialize_constraints ()
     {
       const unsigned int n=this->degree-1;
       const double step=1./this->degree;
-      vector<Point<dim-2> > line_support_points(n);
+      std::vector<Point<dim-2> > line_support_points(n);
       for (unsigned int i=0; i<n; ++i)
        line_support_points[i](0)=(i+1)*step;
       Quadrature<dim-2> qline(line_support_points);
 
                                       // auxiliary points in 2d
-      vector<Point<dim-1> > p_line(n);
+      std::vector<Point<dim-1> > 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<Point<dim-1> > inner_points(n*n);
+      std::vector<Point<dim-1> > 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<dim-1> (ix*step, iy*step);

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.