MCPcopy Create free account
hub / github.com/SOUI2/soui / operator+

Method operator+

utilities/include/string/tstring.h:1093–1098  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls 2

ConcatCopyMethod · 0.80
GetDataMethod · 0.45

Tested by

no test coverage detected