From: bangerth Date: Wed, 26 Feb 2014 14:05:06 +0000 (+0000) Subject: Qualify names with std::. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a62d1102e57ab6301658fe257de2dc3f75265657;p=dealii-svn.git Qualify names with std::. git-svn-id: https://svn.dealii.org/trunk@32557 0785d39b-7218-0410-832d-ea1e28bc413d --- 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 class DoFHandler; * * // first declare the vectors * // to be used later - * vector solution_names; + * std::vector 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 - * vector containing only one + * std::vector@ 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 - * vector containing only one + * std::vector@ containing only one * element if the finite element has * only one component. *