Cleanup: comments (long lines) in string

This commit is contained in:
2019-05-01 20:31:00 +10:00
parent 59fb13c2b1
commit 8a10da1cf8
2 changed files with 10 additions and 8 deletions

View File

@@ -385,7 +385,8 @@ void STR_String::Replace(int pos, int num, rcSTR_String str)
-------------------------------------------------------------------------------------------------*/ -------------------------------------------------------------------------------------------------*/
// //
// Compare two strings and return the result, <0 if *this<rhs, >0 if *this>rhs or 0 if *this==rhs // Compare two strings and return the result,
// <0 if *this<rhs, >0 if *this>rhs or 0 if *this==rhs
// //
int STR_String::Compare(rcSTR_String rhs) const int STR_String::Compare(rcSTR_String rhs) const
{ {
@@ -393,7 +394,8 @@ int STR_String::Compare(rcSTR_String rhs) const
} }
// //
// Compare two strings without respecting case and return the result, <0 if *this<rhs, >0 if *this>rhs or 0 if *this==rhs // Compare two strings without respecting case and return the result,
// <0 if *this<rhs, >0 if *this>rhs or 0 if *this==rhs
// //
int STR_String::CompareNoCase(rcSTR_String rhs) const int STR_String::CompareNoCase(rcSTR_String rhs) const
{ {