| 1091 | } |
| 1092 | |
| 1093 | friend inline TStringT __stdcall operator+(const TStringT& string1, const TStringT& string2) |
| 1094 | { |
| 1095 | TStringT s; |
| 1096 | s.ConcatCopy(string1.GetData()->nDataLength, string1.m_pszData, string2.GetData()->nDataLength, string2.m_pszData); |
| 1097 | return s; |
| 1098 | } |
| 1099 | friend inline TStringT __stdcall operator+(const TStringT& string, const tchar* psz) |
| 1100 | { |
| 1101 | SASSERT(psz != NULL); |
nothing calls this directly
no test coverage detected