]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Fix missing std::
authorWolfgang Bangerth <bangerth@math.tamu.edu>
Tue, 26 Jun 2001 13:40:47 +0000 (13:40 +0000)
committerWolfgang Bangerth <bangerth@math.tamu.edu>
Tue, 26 Jun 2001 13:40:47 +0000 (13:40 +0000)
git-svn-id: https://svn.dealii.org/trunk@4756 0785d39b-7218-0410-832d-ea1e28bc413d

tests/base/polynomial1d.cc
tests/base/quadrature_test.cc

index 98f7a5eb3f1fa018c47da637c53f4e294350c6ad..b40f43618a3407d4f6e3666aa0a3f94a26bead3c 100644 (file)
@@ -44,12 +44,12 @@ int main ()
   deallog.attach(logfile);
   deallog.depth_console(0);
 
-  vector<Polynomial<double> > p (15);
+  std::vector<Polynomial<double> > p (15);
   for (unsigned int i=0;i<p.size();++i)
     p[i] = Legendre<double>(i);
   
   for (unsigned int i=0;i<p.size();++i)
     for (unsigned int j=0;j<=i;++j)
       deallog << 'P' << i << " * P" << j
-             << " =" << scalar_product(p[i], p[j]) << endl;
+             << " =" << scalar_product(p[i], p[j]) << std::endl;
 }
index b6c7253c0cd1e95b50833285c606bf8f407cf5b7..848aed80f05082bc051381efe83399e6aaba7f53 100644 (file)
@@ -119,8 +119,8 @@ check_faces (const std::vector<Quadrature<dim-1>*>& quadratures, const bool sub)
   for (unsigned int n=0; n<quadratures.size(); ++n)
     {
       QProjector<dim> quadrature(*quadratures[n], sub);
-      const vector<Point<dim> > &points=quadrature.get_points();
-      const vector<double> &weights=quadrature.get_weights();
+      const std::vector<Point<dim> > &points=quadrature.get_points();
+      const std::vector<double> &weights=quadrature.get_weights();
 
       deallog << "Quadrature no." << n
              << " (" << typeid(*quadratures[n]).name() << ")";

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.