X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmTS.cxx;h=33f49501f2cfdbe4d0bccff69442e1b649875508;hb=d3710448e1a6c462d762a10b9f02ca051bf090e3;hp=e697e566893fa28e8e8e3a43bd55779701257979;hpb=eb941e8785d3742b8a6a1aac964d43dcb4cf49f0;p=gdcm.git diff --git a/src/gdcmTS.cxx b/src/gdcmTS.cxx index e697e566..33f49501 100644 --- a/src/gdcmTS.cxx +++ b/src/gdcmTS.cxx @@ -1,15 +1,5 @@ // gdcmTS.cxx -//This is needed when compiling in debug mode -#ifdef _MSC_VER -// 'identifier' : class 'type' needs to have dll-interface to be used by -// clients of class 'type2' -#pragma warning ( disable : 4251 ) -// 'identifier' : identifier was truncated to 'number' characters in the -// debug information -#pragma warning ( disable : 4786 ) -#endif //_MSC_VER - #include #include "gdcmTS.h" @@ -185,6 +175,6 @@ int gdcmTS::Count(TSKey key) { std::string gdcmTS::GetValue(TSKey key) { if (ts.count(key) == 0) - return ("gdcm::Unfound"); + return (GDCM_UNFOUND); return ts[key]; }