cleanup (prefer size() over GetLength)

This commit is contained in:
Glenn Maynard
2005-12-21 07:50:14 +00:00
parent 5e2806c5f7
commit 39b07e55b3
11 changed files with 25 additions and 21 deletions
+1 -1
View File
@@ -161,7 +161,7 @@ CString Song::GetCacheFilePath() const
* be a cache file. */
const CString &Song::GetSongFilePath() const
{
ASSERT ( m_sSongFileName.GetLength() != 0 );
ASSERT( !m_sSongFileName.empty() );
return m_sSongFileName;
}