remove overload that doesn't allow error checking--makes it too easy to be lazy

This commit is contained in:
Glenn Maynard
2004-06-06 21:06:03 +00:00
parent ae99f03a4b
commit cd060ef6d6
2 changed files with 0 additions and 8 deletions
-7
View File
@@ -180,13 +180,6 @@ int RageFile::GetLine( CString &out )
return GotData? 1:0;
}
CString RageFile::GetLine()
{
CString ret;
GetLine( ret );
return ret;
}
// Always use "\r\n". Even though the program may be running on Unix, the
// files written to a memory card are likely to be edited using Windows.
//#if defined(_WIN32)
-1
View File
@@ -68,7 +68,6 @@ public:
int Seek( int offset, int whence );
/* Line-based I/O: */
CString GetLine();
int GetLine( CString &out );
int PutLine( const CString &str );