From a62d1102e57ab6301658fe257de2dc3f75265657 Mon Sep 17 00:00:00 2001
From: bangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Date: Wed, 26 Feb 2014 14:05:06 +0000
Subject: [PATCH] Qualify names with std::.

git-svn-id: https://svn.dealii.org/trunk@32557 0785d39b-7218-0410-832d-ea1e28bc413d
---
 deal.II/include/deal.II/numerics/data_out_stack.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/deal.II/include/deal.II/numerics/data_out_stack.h b/deal.II/include/deal.II/numerics/data_out_stack.h
index d7f65b44be..124377d7d5 100644
--- a/deal.II/include/deal.II/numerics/data_out_stack.h
+++ b/deal.II/include/deal.II/numerics/data_out_stack.h
@@ -1,7 +1,7 @@
 // ---------------------------------------------------------------------
 // $Id$
 //
-// Copyright (C) 1999 - 2013 by the deal.II authors
+// Copyright (C) 1999 - 2014 by the deal.II authors
 //
 // This file is part of the deal.II library.
 //
@@ -79,7 +79,7 @@ template <int dim, int spacedim> class DoFHandler;
  *
  *                                  // first declare the vectors
  *                                  // to be used later
- *   vector<string> solution_names;
+ *   std::vector<std::string> solution_names;
  *   solution_names.push_back ("u");
  *   solution_names.push_back ("v");
  *   data_out_stack.declare_data_vector (solution_names,
@@ -178,7 +178,7 @@ public:
    * component and therefore more than one
    * name needs to be given. However, you
    * can also call this function with a
-   * <tt>vector<string></tt> containing only one
+   * <tt>std::vector@<std::string@></tt> containing only one
    * element if the finite element has
    * only one component.
    */
@@ -233,7 +233,7 @@ public:
    * component and therefore more than one
    * name needs to be given. However, you
    * can also call this function with a
-   * <tt>vector<string></tt> containing only one
+   * <tt>std::vector@<std::string@></tt> containing only one
    * element if the finite element has
    * only one component.
    *
-- 
2.39.5