]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Minor std::, typename changes and the like.
authorwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Mon, 22 Jan 2001 09:29:52 +0000 (09:29 +0000)
committerwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Mon, 22 Jan 2001 09:29:52 +0000 (09:29 +0000)
git-svn-id: https://svn.dealii.org/trunk@3747 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/base/source/quadrature.cc
deal.II/deal.II/include/grid/tria_boundary.h
deal.II/lac/include/lac/full_matrix.templates.h

index 3e0e04f3f32a04c92c2d4c280d2ef539b57d7d93..d3027431ac492f4a7aa761807c53316ec588d7ff 100644 (file)
@@ -320,7 +320,7 @@ template <>
 void QProjector<1>::project_to_subface (const Quadrature<0> &,
                                        const unsigned int,
                                        const unsigned int,
-                                       vector<Point<1> > &)
+                                       std::vector<Point<1> > &)
 {
   Assert(false, ExcNotImplemented());
 }
index 3bc68198c31c21974b27bcb4a46c727da9231ede..689b0be07ccc345f6157eb09591d8411825474cb 100644 (file)
@@ -137,7 +137,7 @@ class Boundary : public Subscriptor
                                      */
     virtual void
     get_intermediate_points_on_line (const typename Triangulation<dim>::line_iterator &line,
-                                    vector<Point<dim> > &points) const;
+                                    typename std::vector<Point<dim> > &points) const;
     
                                     /**
                                      * Return intermediate points
@@ -166,7 +166,7 @@ class Boundary : public Subscriptor
                                      */
     virtual void
     get_intermediate_points_on_quad (const typename Triangulation<dim>::quad_iterator &quad,
-                                    vector<Point<dim> > &points) const;
+                                    typename std::vector<Point<dim> > &points) const;
 
                                     /**
                                      * Exception.
@@ -236,7 +236,7 @@ class StraightBoundary : public Boundary<dim> {
                                      */
     virtual void
     get_intermediate_points_on_line (const typename Triangulation<dim>::line_iterator &line,
-                                    vector<Point<dim> > &points) const;
+                                    typename std::vector<Point<dim> > &points) const;
 
                                     /**
                                      * Gives @p{n=points.size()=m*m}
@@ -251,7 +251,7 @@ class StraightBoundary : public Boundary<dim> {
                                      */
     virtual void
     get_intermediate_points_on_quad (const typename Triangulation<dim>::quad_iterator &quad,
-                                    vector<Point<dim> > &points) const;
+                                    typename std::vector<Point<dim> > &points) const;
 
 };
 
index 4fc1d5ecce405d76fe8c021d8e38acfcb85aec46..477778d13b3ebf1add2eca870b79a7ca93a03443 100644 (file)
@@ -59,7 +59,7 @@ FullMatrix<number>::FullMatrix (const unsigned int m,
   reinit (m,n);
 
   if (dim_range*dim_image != 0)
-    copy (entries, entries+dim_image*dim_range, val);
+    std::copy (entries, entries+dim_image*dim_range, val);
 };
 
 
@@ -1338,11 +1338,11 @@ FullMatrix<number>::print_formatted (std::ostream       &out,
   unsigned int actual_width = width;
   if (scientific)
     {
-      out.setf (ios::scientific, ios::floatfield);
+      out.setf (std::ios::scientific, std::ios::floatfield);
       if (!width)
        actual_width = precision+7;
     } else {
-      out.setf (ios::fixed, ios::floatfield);
+      out.setf (std::ios::fixed, std::ios::floatfield);
       if (!width)
        actual_width = precision+2;
     }

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.