]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Fix a number of missing std::.
authorWolfgang Bangerth <bangerth@math.tamu.edu>
Tue, 9 Mar 2004 17:38:33 +0000 (17:38 +0000)
committerWolfgang Bangerth <bangerth@math.tamu.edu>
Tue, 9 Mar 2004 17:38:33 +0000 (17:38 +0000)
git-svn-id: https://svn.dealii.org/trunk@8705 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/deal.II/source/fe/fe_dgp_monomial.cc

index 4bac467c9b8c492ed15dac3a35397b4720e10494..836ac9dc215f4fe3a57780ba5fb07c1880943e20 100644 (file)
@@ -76,11 +76,11 @@ namespace
   
   template<int dim>
   void generate_unit_points (const unsigned int,
-                            vector<Point<dim> > &);
+                            std::vector<Point<dim> > &);
 
   template <>
   void generate_unit_points (const unsigned int,
-                            vector<Point<1> > &)
+                            std::vector<Point<1> > &)
   {
     Assert(false, ExcNotImplemented());
   }
@@ -88,7 +88,7 @@ namespace
   
   template <>
   void generate_unit_points (const unsigned int k,
-                            vector<Point<2> > &p)
+                            std::vector<Point<2> > &p)
   {
     Assert(k<=4, ExcNotImplemented());
     Assert(p.size()==start_index2d[k+1]-start_index2d[k], ExcInternalError());
@@ -101,7 +101,7 @@ namespace
   
   template <>
   void generate_unit_points (const unsigned int k,
-                            vector<Point<3> > &p)
+                            std::vector<Point<3> > &p)
   {
     Assert(k<=2, ExcNotImplemented());
     Assert(p.size()==start_index3d[k+1]-start_index3d[k], ExcInternalError());
@@ -289,7 +289,7 @@ template <int dim>
 void
 FE_DGPMonomial<dim>::initialize_embedding ()
 {
-  vector<Point<dim> > unit_points(this->dofs_per_cell);
+  std::vector<Point<dim> > unit_points(this->dofs_per_cell);
   generate_unit_points(get_degree(), unit_points);
   
   FullMatrix<double> cell_interpolation (this->dofs_per_cell,

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.