]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Fix missing std::
authorWolfgang Bangerth <bangerth@math.tamu.edu>
Wed, 28 Feb 2001 10:17:18 +0000 (10:17 +0000)
committerWolfgang Bangerth <bangerth@math.tamu.edu>
Wed, 28 Feb 2001 10:17:18 +0000 (10:17 +0000)
git-svn-id: https://svn.dealii.org/trunk@4080 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/deal.II/source/grid/tria_boundary_lib.cc

index 2049f93fffcf856f9edc4f946f30003efa377cd5..b670d9624391a106fdafa2c00d1775aa298935ba 100644 (file)
@@ -184,13 +184,13 @@ HyperBallBoundary<3>::get_intermediate_points_on_quad (
   unsigned int m=static_cast<unsigned int> (sqrt(points.size()));
   Assert(points.size()==m*m, ExcInternalError());
 
-  vector<Point<3> > lp3(m);
-  vector<Point<3> > lp1(m);
+  std::vector<Point<3> > lp3(m);
+  std::vector<Point<3> > lp1(m);
   
   get_intermediate_points_on_line(quad->line(3), lp3);
   get_intermediate_points_on_line(quad->line(1), lp1);
   
-  vector<Point<3> > lps(m);
+  std::vector<Point<3> > lps(m);
   for (unsigned int i=0; i<m; ++i)
     {
       get_intermediate_points_between_points(lp3[i], lp1[i], lps);

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.