From 0781a9e66447711d801a92da7c812f62ada4c077 Mon Sep 17 00:00:00 2001 From: jpr Date: Wed, 7 Jun 2006 12:35:47 +0000 Subject: [PATCH] avoid 'type qualifier on return type is meaningless' warning with dash8.kitware -- GDCM-ecc-64bits --- src/gdcmDocEntry.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gdcmDocEntry.h b/src/gdcmDocEntry.h index 235ff54a..410be3db 100644 --- a/src/gdcmDocEntry.h +++ b/src/gdcmDocEntry.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocEntry.h,v $ Language: C++ - Date: $Date: 2006/05/06 16:05:16 $ - Version: $Revision: 1.63 $ + Date: $Date: 2006/06/07 12:35:47 $ + Version: $Revision: 1.64 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -48,11 +48,11 @@ public: DictEntry * GetDictEntry() { return DicomDict; } /// Returns the Dicom Group number of the current Dicom entry - const uint16_t GetGroup() const { return Key[0]; } + uint16_t GetGroup() const { return Key[0]; } //const uint16_t &GetGroup() const { return DicomDict->GetGroup(); } /// Returns the Dicom Element number of the current Dicom entry - const uint16_t GetElement() const { return Key[1];} + uint16_t GetElement() const { return Key[1];} //const uint16_t &GetElement() const { return DicomDict->GetElement();} /// Returns the 'key' of the current Dicom entry -- 2.48.1