From 77a6b0ff6f79576dc71f0e4f3ce90f2d4d5f81a1 Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <dmitri.naumov@ufz.de> Date: Thu, 17 Sep 2015 12:11:18 +0200 Subject: [PATCH] [IO] Use erase last algo operating on copy. This allows for a const variable. --- FileIO/MPI_IO/NodePartitionedMeshReader.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FileIO/MPI_IO/NodePartitionedMeshReader.cpp b/FileIO/MPI_IO/NodePartitionedMeshReader.cpp index f2cae210d2d..aa2150ba23a 100644 --- a/FileIO/MPI_IO/NodePartitionedMeshReader.cpp +++ b/FileIO/MPI_IO/NodePartitionedMeshReader.cpp @@ -73,8 +73,8 @@ MeshLib::NodePartitionedMesh* NodePartitionedMeshReader::read( MeshLib::NodePartitionedMesh* mesh = nullptr; /// Prefix of the filename of the partitioned mesh files. - std::string filename_prefix = file_name_base; - boost::erase_last(filename_prefix, ".vtk"); + std::string const filename_prefix = + boost::erase_last_copy(file_name_base, ".vtk"); // Always try binary file first std::string const fname_new = filename_prefix + "_partitioned_msh_cfg" + -- GitLab