[Gdcm-hackers] gdcm-git:Grassroots DICOM branch release updated. 4135c12fa375ab125ef55f5675b01760a9
Cross-platform DICOM implementation
Brought to you by:
malat
|
From: Mathieu M. <ma...@us...> - 2017-02-17 13:32:35
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Grassroots DICOM".
The branch, release has been updated
via 4135c12fa375ab125ef55f5675b01760a9087499 (commit)
from 02a9a9b5cde88985288e22dc11f4b0d45634eb2d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
https://sourceforge.net/p/gdcm/gdcm/ci/4135c12fa375ab125ef55f5675b01760a9087499/
commit 4135c12fa375ab125ef55f5675b01760a9087499
Author: Mathieu Malaterre <mat...@gm...>
Date: Fri Feb 17 14:32:21 2017 +0100
Remove simple warning
diff --git a/Source/MediaStorageAndFileFormat/gdcmImageHelper.cxx b/Source/MediaStorageAndFileFormat/gdcmImageHelper.cxx
index be9ff32..8489aae 100644
--- a/Source/MediaStorageAndFileFormat/gdcmImageHelper.cxx
+++ b/Source/MediaStorageAndFileFormat/gdcmImageHelper.cxx
@@ -2139,12 +2139,12 @@ void ImageHelper::SetRescaleInterceptSlopeValue(File & f, const Image & img)
}
// cleanup root (famous MR -> EMR case)
{
- Attribute<0x0028,0x1052> at1;
- ds.Remove(at1.GetTag());
- Attribute<0x0028,0x1053> at2;
- ds.Remove(at2.GetTag());
- Attribute<0x0028,0x1053> at3;
- ds.Remove(at3.GetTag());
+ const Tag t1(0x0028,0x1052);
+ ds.Remove(t1);
+ const Tag t2(0x0028,0x1053);
+ ds.Remove(t2);
+ const Tag t3(0x0028,0x1053);
+ ds.Remove(t3);
}
return;
}
-----------------------------------------------------------------------
Summary of changes:
Source/MediaStorageAndFileFormat/gdcmImageHelper.cxx | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
hooks/post-receive
--
Grassroots DICOM
|