From: malaterre Date: Thu, 2 Sep 2004 15:53:05 +0000 (+0000) Subject: STYLE: No need to use c string X-Git-Tag: Version0.6.bp~230 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=5794c0f534c2d5dbf871766f3c7a7a0cc6c6118f;p=gdcm.git STYLE: No need to use c string --- diff --git a/Testing/TestAllReadCompareDicom.cxx b/Testing/TestAllReadCompareDicom.cxx index 9e10924e..3f111658 100644 --- a/Testing/TestAllReadCompareDicom.cxx +++ b/Testing/TestAllReadCompareDicom.cxx @@ -44,7 +44,7 @@ int InternalTest(std::string const & filename, std::string const & referenceFile ////// When reference file is not gdcm readable test is failed: - gdcmFile* reference = new gdcmFile( referenceFileName.c_str() ); + gdcmFile* reference = new gdcmFile( referenceFileName ); if( !reference->GetHeader()->IsReadable() ) { std::cout << " Reference image " << std::endl