| 110 | } |
| 111 | |
| 112 | bool Concat(const IN TChar* Str) { |
| 113 | return Concat(Str, Length(Str)); |
| 114 | } |
| 115 | |
| 116 | bool Concat(const IN TChar* Str, size_t StrLength) { |
| 117 | if (!StrLength) return true; |
nothing calls this directly
no outgoing calls
no test coverage detected