diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2017-01-23 13:25:52 +0100 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2017-01-24 17:23:10 +0100 |
commit | 3b26f7643d39f4b7a00a96c160dc9bd13722f14c (patch) | |
tree | e3d85952efe25ce4e56da546f54f1a9eede40454 /include/astra/Float32VolumeData3DMemory.h | |
parent | bf5475783f2a1bdcddf8426fea136f3b09c61859 (diff) | |
download | astra-3b26f7643d39f4b7a00a96c160dc9bd13722f14c.tar.gz astra-3b26f7643d39f4b7a00a96c160dc9bd13722f14c.tar.bz2 astra-3b26f7643d39f4b7a00a96c160dc9bd13722f14c.tar.xz astra-3b26f7643d39f4b7a00a96c160dc9bd13722f14c.zip |
Fix warning
Diffstat (limited to 'include/astra/Float32VolumeData3DMemory.h')
-rw-r--r-- | include/astra/Float32VolumeData3DMemory.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/astra/Float32VolumeData3DMemory.h b/include/astra/Float32VolumeData3DMemory.h index 870c6e2..70f0939 100644 --- a/include/astra/Float32VolumeData3DMemory.h +++ b/include/astra/Float32VolumeData3DMemory.h @@ -156,7 +156,7 @@ public: * * @return pointer to volume geometry. */ - CVolumeGeometry3D* getGeometry(); + CVolumeGeometry3D* getGeometry() const; /** * Gets a slice, containing all voxels with a given x (= column) index. @@ -218,7 +218,7 @@ public: //---------------------------------------------------------------------------------------- // Get the projection geometry. -inline CVolumeGeometry3D* CFloat32VolumeData3DMemory::getGeometry() +inline CVolumeGeometry3D* CFloat32VolumeData3DMemory::getGeometry() const { ASTRA_ASSERT(m_bInitialized); return m_pGeometry; |