From fa45b3774bbaad72069f79476ad53bf8cbd7bd44 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 7 Jun 2016 09:43:36 +0100 Subject: [PATCH] Fixed shadows warnings --- src/osgPlugins/dicom/ReaderWriterDICOM.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/osgPlugins/dicom/ReaderWriterDICOM.cpp b/src/osgPlugins/dicom/ReaderWriterDICOM.cpp index 00f1872d7..c63fdd519 100644 --- a/src/osgPlugins/dicom/ReaderWriterDICOM.cpp +++ b/src/osgPlugins/dicom/ReaderWriterDICOM.cpp @@ -633,8 +633,6 @@ class ReaderWriterDICOM : public osgDB::ReaderWriter typedef std::list FileInfoList; FileInfoList fileInfoList; - SeriesIdentifier seriesIdentifier; - typedef std::map DistanceFileInfoMap; typedef std::map SeriesFileInfoMap; SeriesFileInfoMap seriesFileInfoMap; @@ -764,7 +762,7 @@ class ReaderWriterDICOM : public osgDB::ReaderWriter double imageOrientationPatient[6] = {1.0, 0.0, 0.0, 0.0, 1.0, 0.0 }; for(int i=0; i<6; ++i) { - double value = 0.0; + value = 0.0; if (fileformat.getDataset()->findAndGetFloat64(DCM_ImageOrientationPatient, value,i).good()) { imageOrientationPatient[i] = value;