From: wolf Date: Wed, 28 Feb 2001 10:32:35 +0000 (+0000) Subject: Fix more missing std:: X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd7da21c9a505dd097a48cb0a676a526e1bec7c4;p=dealii-svn.git Fix more missing std:: git-svn-id: https://svn.dealii.org/trunk@4082 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/source/sparse_direct.cc b/deal.II/lac/source/sparse_direct.cc index 180e0c0997..11477ac46e 100644 --- a/deal.II/lac/source/sparse_direct.cc +++ b/deal.II/lac/source/sparse_direct.cc @@ -426,12 +426,12 @@ SparseDirectMA27::factorize (const SparseMatrix &matrix) // we can do, leading to // an exception on the // allocation. - cout << "<*>" << flush; + std::cout << "<*>" << std::flush; LA = static_cast(LA * LA_increase_factor); if (true) { - vector tmp; + std::vector tmp; A.swap (tmp); }; @@ -470,7 +470,7 @@ SparseDirectMA27::solve (Vector &rhs_and_solution) const Assert (factorize_called == true, ExcFactorizeNotCalled()); const unsigned int n_rows = rhs_and_solution.size(); - vector W(MAXFRT); + std::vector W(MAXFRT); HSL::MA27::ma27cd_(&n_rows, &A[0], &LA, &IW[0], &LIW, &W[0], &MAXFRT, &rhs_and_solution(0), &IW1[0], &NSTEPS); @@ -755,12 +755,12 @@ SparseDirectMA47::factorize (const SparseMatrix &m) // we can do, leading to // an exception on the // allocation. - cout << "<*>" << flush; + std::cout << "<*>" << std::flush; LA = static_cast(LA * LA_increase_factor); if (true) { - vector tmp; + std::vector tmp; A.swap (tmp); }; @@ -799,7 +799,7 @@ SparseDirectMA47::solve (Vector &rhs_and_solution) Assert (factorize_called == true, ExcFactorizeNotCalled()); const unsigned int n_rows = rhs_and_solution.size(); - vector W(n_rows); + std::vector W(n_rows); HSL::MA47::ma47cd_(&n_rows, &A[0], &LA, &IW[0], &LIW, &W[0], &rhs_and_solution(0), &IW1[0], &ICNTL[0]);