From: malaterre Date: Tue, 12 Oct 2004 17:37:09 +0000 (+0000) Subject: COMP: Fix compilation on cygwin X-Git-Tag: Version0.6.bp~80 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=e10835c7d5c3734ac8de5491ba3260cd47ad7a57;p=gdcm.git COMP: Fix compilation on cygwin --- diff --git a/Testing/TestAllEntryVerify.cxx b/Testing/TestAllEntryVerify.cxx index 6daec820..58aa1aa2 100644 --- a/Testing/TestAllEntryVerify.cxx +++ b/Testing/TestAllEntryVerify.cxx @@ -306,7 +306,7 @@ void ReferenceFileParser::FirstPassReferenceFile() throw ( ParserException ) while ( ! from.eof() ) { - getline( from, line ); + std::getline( from, line ); /// This is how we usually end the parsing because we hit EOF: if ( ! from.good() )