Skip to content
Snippets Groups Projects
Commit 3d2d86ed authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

Add missing separator "/" between grid file path and grid file name

[[Imported from SVN: r10048]]
parent adc9da91
Branches
Tags
No related merge requests found
......@@ -116,7 +116,7 @@ int main (int argc, char *argv[]) try
std::string path = parameterSet.get<std::string>("path");
std::string gridFile = parameterSet.get<std::string>("gridFile");
grid = shared_ptr<GridType>(AmiraMeshReader<GridType>::read(path + gridFile));
grid = shared_ptr<GridType>(AmiraMeshReader<GridType>::read(path + "/" + gridFile));
}
grid->globalRefine(numLevels-1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment