]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Fix std::
authorwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Wed, 28 Feb 2001 10:30:37 +0000 (10:30 +0000)
committerwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Wed, 28 Feb 2001 10:30:37 +0000 (10:30 +0000)
git-svn-id: https://svn.dealii.org/trunk@4081 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/lac/include/lac/sparse_direct.h

index 405348e87692f8a395e65d0ae307d2d25654b704..3b4ebd43378423886bf76a7bdad9a2af9dbffad2 100644 (file)
@@ -288,15 +288,15 @@ class SparseDirectMA27 : public Subscriptor
                                      * Arrays holding row and column
                                      * indices.
                                      */
-    vector<unsigned int> row_numbers;
-    vector<unsigned int> column_numbers;
+    std::vector<unsigned int> row_numbers;
+    std::vector<unsigned int> column_numbers;
 
                                     /**
                                      * Array to hold the matrix
                                      * elements, and later the
                                      * elements of the factors.
                                      */
-    vector<double>       A;
+    std::vector<double>       A;
 
                                     /**
                                      * Length of the @p{A} array.
@@ -313,9 +313,9 @@ class SparseDirectMA27 : public Subscriptor
                                      * Fortran.
                                      */
     unsigned int LIW;
-    vector<unsigned int> IW;
-    vector<unsigned int> IKEEP;
-    vector<unsigned int> IW1;
+    std::vector<unsigned int> IW;
+    std::vector<unsigned int> IKEEP;
+    std::vector<unsigned int> IW1;
     
     unsigned int NSTEPS;
     unsigned int MAXFRT;
@@ -610,15 +610,15 @@ class SparseDirectMA47 : public Subscriptor
                                      * Arrays holding row and column
                                      * indices.
                                      */
-    vector<unsigned int> row_numbers;
-    vector<unsigned int> column_numbers;
+    std::vector<unsigned int> row_numbers;
+    std::vector<unsigned int> column_numbers;
 
                                     /**
                                      * Array to hold the matrix
                                      * elements, and later the
                                      * elements of the factors.
                                      */
-    vector<double>       A;
+    std::vector<double>       A;
 
                                     /**
                                      * Length of the @p{A} array.
@@ -635,9 +635,9 @@ class SparseDirectMA47 : public Subscriptor
                                      * Fortran.
                                      */
     unsigned int LIW;
-    vector<unsigned int> IW;
-    vector<unsigned int> KEEP;
-    vector<unsigned int> IW1;
+    std::vector<unsigned int> IW;
+    std::vector<unsigned int> KEEP;
+    std::vector<unsigned int> IW1;
 
                                     /**
                                      * Fill the @p{A} array from the

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.