Index: src/libchcore/TString.h =================================================================== diff -u -N -rb26ced3298e3e7e51d91f3ac70b56746786da83b -r541304f4e098b4c7617b718287ab40646d5deb92 --- src/libchcore/TString.h (.../TString.h) (revision b26ced3298e3e7e51d91f3ac70b56746786da83b) +++ src/libchcore/TString.h (.../TString.h) (revision 541304f4e098b4c7617b718287ab40646d5deb92) @@ -64,19 +64,19 @@ TString operator+(const wchar_t* pszSrc) const; const TString& operator+=(const wchar_t* pszSrc); - bool operator<(const wchar_t* psz) const { return Compare(psz) < 0; }; - bool operator<=(const wchar_t* psz) const { return Compare(psz) <= 0; }; - bool operator==(const wchar_t* psz) const { return Compare(psz) == 0; }; - bool operator>=(const wchar_t* psz) const { return Compare(psz) >= 0; }; - bool operator>(const wchar_t* psz) const { return Compare(psz) > 0; }; - bool operator!=(const wchar_t* psz) const { return Compare(psz) != 0; }; + bool operator<(const wchar_t* psz) const { return Compare(psz) < 0; } + bool operator<=(const wchar_t* psz) const { return Compare(psz) <= 0; } + bool operator==(const wchar_t* psz) const { return Compare(psz) == 0; } + bool operator>=(const wchar_t* psz) const { return Compare(psz) >= 0; } + bool operator>(const wchar_t* psz) const { return Compare(psz) > 0; } + bool operator!=(const wchar_t* psz) const { return Compare(psz) != 0; } - bool operator<(const TString& str) const { return Compare(str) < 0; }; - bool operator<=(const TString& str) const { return Compare(str) <= 0; }; - bool operator==(const TString& str) const { return Compare(str) == 0; }; - bool operator>=(const TString& str) const { return Compare(str) >= 0; }; - bool operator>(const TString& str) const { return Compare(str) >= 0; }; - bool operator!=(const TString& str) const { return Compare(str) != 0; }; + bool operator<(const TString& str) const { return Compare(str) < 0; } + bool operator<=(const TString& str) const { return Compare(str) <= 0; } + bool operator==(const TString& str) const { return Compare(str) == 0; } + bool operator>=(const TString& str) const { return Compare(str) >= 0; } + bool operator>(const TString& str) const { return Compare(str) >= 0; } + bool operator!=(const TString& str) const { return Compare(str) != 0; } // appends the given TString to this void Append(const wchar_t* pszSrc); ///< Appends an unicode TString to the TString object