MCPcopy Create free account
hub / github.com/OpenZWave/open-zwave / operator +

Function operator +

cpp/tinyxml/tinystr.cpp:86–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84
85
86TiXmlString operator + (const TiXmlString & a, const TiXmlString & b)
87{
88 TiXmlString tmp;
89 tmp.reserve(a.length() + b.length());
90 tmp += a;
91 tmp += b;
92 return tmp;
93}
94
95TiXmlString operator + (const TiXmlString & a, const char* b)
96{

Callers

nothing calls this directly

Calls 2

reserveMethod · 0.45
lengthMethod · 0.45

Tested by

no test coverage detected