From 3d2d86ed5efb405cdb857100c5262901a6bd3c53 Mon Sep 17 00:00:00 2001
From: Oliver Sander <sander@igpm.rwth-aachen.de>
Date: Sun, 1 Feb 2015 14:12:30 +0000
Subject: [PATCH] Add missing separator "/" between grid file path and grid
 file name

[[Imported from SVN: r10048]]
---
 src/harmonicmaps.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/harmonicmaps.cc b/src/harmonicmaps.cc
index a09de7da..5f24d0dc 100644
--- a/src/harmonicmaps.cc
+++ b/src/harmonicmaps.cc
@@ -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);
-- 
GitLab