From c7281f7aa6e2d989cde67fa97892b7005a850c98 Mon Sep 17 00:00:00 2001
From: Christoph Rettinger <christoph.rettinger@fau.de>
Date: Tue, 30 May 2017 10:51:21 +0200
Subject: [PATCH] Added missing const in hash grid data handling

---
 src/pe/ccd/HashGridsDataHandling.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/pe/ccd/HashGridsDataHandling.h b/src/pe/ccd/HashGridsDataHandling.h
index 38d1d1b4f..43aa61863 100644
--- a/src/pe/ccd/HashGridsDataHandling.h
+++ b/src/pe/ccd/HashGridsDataHandling.h
@@ -44,7 +44,7 @@ private:
 };
 
 inline
-shared_ptr<HashGridsDataHandling> createHashGridsDataHandling(shared_ptr<BodyStorage>& globalStorage,const BlockDataID& storageID)
+shared_ptr<HashGridsDataHandling> createHashGridsDataHandling(const shared_ptr<BodyStorage>& globalStorage,const BlockDataID& storageID)
 {
    return make_shared<HashGridsDataHandling>( globalStorage, storageID );
 }
-- 
GitLab