Skip to content
Snippets Groups Projects
Commit ca437630 authored by Samuel Kemmler's avatar Samuel Kemmler
Browse files

Fix string concatenation

parent a3dbd7a9
Branches
No related merge requests found
......@@ -1537,7 +1537,7 @@ int main(int argc, char **argv) {
WALBERLA_ROOT_SECTION()
{
std::ofstream file;
std::string configFileCopyName = checkPointing_folder + "/" + uniqueFileIdentifier + ".cfg";
std::string configFileCopyName = checkPointing_folder + "/" += uniqueFileIdentifier + ".cfg";
file.open( configFileCopyName.c_str() );
file << *cfg;
file.close();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment