X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmVR.cxx;h=3e461697ba8c319de06d5007c58d3f486dcc807a;hb=951d1f96c7bff6329f19fa28444fae5c941c352d;hp=ea98ceb8e0fbc2d5e0c93bea17151152040da665;hpb=d5ebba38c596bd5a0514fc9e08fe8ac2a45482f5;p=gdcm.git diff --git a/src/gdcmVR.cxx b/src/gdcmVR.cxx index ea98ceb8..3e461697 100644 --- a/src/gdcmVR.cxx +++ b/src/gdcmVR.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmVR.cxx,v $ Language: C++ - Date: $Date: 2005/02/11 15:22:19 $ - Version: $Revision: 1.36 $ + Date: $Date: 2005/06/24 10:55:59 $ + Version: $Revision: 1.37 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -40,7 +40,7 @@ VR::VR() { std::string filename = DictSet::BuildDictPath() + DICT_VR; std::ifstream from(filename.c_str()); - if(!from) + if ( !from ) { gdcmWarningMacro("Can't open dictionary" << filename.c_str()); FillDefaultVRDict(vr); @@ -63,7 +63,7 @@ VR::VR() from >> std::ws; from.getline(buff, 1024, '\n'); - if(key != "") + if ( key != "" ) { vr[key] = name; }