From 356ed8cc4ae4eb19e76a1f069af7c4b589a673b7 Mon Sep 17 00:00:00 2001 From: wolf Date: Thu, 22 Feb 2001 12:38:03 +0000 Subject: [PATCH] Fix std:: git-svn-id: https://svn.dealii.org/trunk@4011 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/source/data_out_base.cc | 10 +++++----- deal.II/base/source/legendre.cc | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/deal.II/base/source/data_out_base.cc b/deal.II/base/source/data_out_base.cc index 98b259758a..499a0f2c3b 100644 --- a/deal.II/base/source/data_out_base.cc +++ b/deal.II/base/source/data_out_base.cc @@ -19,7 +19,7 @@ #include #include -#include +#include #include @@ -892,8 +892,8 @@ void DataOutBase::write_povray (const typename std::vector > ExcInvalidDatasetSize (patch->data.n(), n_subdivisions+1)); - vector > ver((n_subdivisions+1)* - (n_subdivisions+1)); + std::vector > ver((n_subdivisions+1)* + (n_subdivisions+1)); for (unsigned int i=0; i > { // aproximate normal // vectors in patch - vector > nrml((n_subdivisions+1)* - (n_subdivisions+1)); + std::vector > nrml((n_subdivisions+1)* + (n_subdivisions+1)); Point<3> h1,h2; for (unsigned int i=0; i::get_coefficients (const unsigned int k) // of coefficients. do that in a MT // safe way coefficients_lock.acquire (); - const vector *p = coefficients[k]; + const std::vector *p = coefficients[k]; coefficients_lock.release (); // return the object pointed -- 2.39.5