string comparison
| 452 | |
| 453 | // string comparison |
| 454 | int Compare(const tchar* psz) const |
| 455 | { |
| 456 | return tchar_traits::StrCmp(m_pszData, psz); |
| 457 | } |
| 458 | int CompareNoCase(const tchar* psz) const |
| 459 | { |
| 460 | return tchar_traits::StrICmp(m_pszData, psz); |
no outgoing calls
no test coverage detected