From: Wolfgang Bangerth Date: Mon, 22 Jan 2007 05:19:00 +0000 (+0000) Subject: Qualify (necessary or not) a call to std::transform X-Git-Tag: v8.0.0~10630 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e8e275aa9352d29922c3dc50aa6022ccc51cd3fe;p=dealii.git Qualify (necessary or not) a call to std::transform git-svn-id: https://svn.dealii.org/trunk@14359 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/grid/grid_in.cc b/deal.II/deal.II/source/grid/grid_in.cc index dff3062b06..dcfd5d6111 100644 --- a/deal.II/deal.II/source/grid/grid_in.cc +++ b/deal.II/deal.II/source/grid/grid_in.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 by the deal.II authors +// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -1252,7 +1252,7 @@ void GridIn::parse_tecplot_header(std::string &header, blocked=false; // convert the string to upper case - transform(header.begin(),header.end(),header.begin(),::toupper); + std::transform(header.begin(),header.end(),header.begin(),::toupper); // replace all tabs, commas, newlines by // whitespaces