From e10835c7d5c3734ac8de5491ba3260cd47ad7a57 Mon Sep 17 00:00:00 2001 From: malaterre Date: Tue, 12 Oct 2004 17:37:09 +0000 Subject: [PATCH] COMP: Fix compilation on cygwin --- Testing/TestAllEntryVerify.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() ) -- 2.48.1