diff --git a/Applications/Utils/MeshGeoTools/createIntermediateRasters.cpp b/Applications/Utils/MeshGeoTools/createIntermediateRasters.cpp
index 1945f6572a88ed53a2ce4e1a815c9c9413fc3a0a..8beb20447a1452884efe385d946a69158e946d18 100644
--- a/Applications/Utils/MeshGeoTools/createIntermediateRasters.cpp
+++ b/Applications/Utils/MeshGeoTools/createIntermediateRasters.cpp
@@ -132,8 +132,7 @@ int main(int argc, char* argv[])
         std::string const basename = BaseLib::dropFileExtension(filename);
         std::string const ext = BaseLib::getFileExtension(filename);
 
-        GeoLib::RasterHeader h (h1);
-        GeoLib::Raster r(std::move(h), raster[i].begin(), raster[i].end());
+        GeoLib::Raster r(h1, raster[i].begin(), raster[i].end());
         FileIO::AsciiRasterInterface::writeRasterAsASC(r, basename + std::to_string(i) + "." + ext);
         INFO("Layer %d written.", i+1);
     }
diff --git a/GeoLib/Raster.h b/GeoLib/Raster.h
index ce1c8d28b12f30dba59ac8d1d9e9a5d10c861cda..5a2cbe9115180157d918b4ee55d65b1babadf26b 100644
--- a/GeoLib/Raster.h
+++ b/GeoLib/Raster.h
@@ -54,7 +54,7 @@ public:
      * @param end input iterator pointing to the last element of the data, end have to be reachable from begin
      */
     template <typename InputIterator>
-    Raster(RasterHeader&& header, InputIterator begin, InputIterator end)
+    Raster(RasterHeader header, InputIterator begin, InputIterator end)
         : _header(std::move(header)),
           _raster_data(new double[_header.n_cols * _header.n_rows])
     {