| 190 | } |
| 191 | |
| 192 | void FString::UnlockBuffer() |
| 193 | { |
| 194 | assert (Data()->RefCount < 0); |
| 195 | |
| 196 | if (++Data()->RefCount == 0) |
| 197 | { |
| 198 | Data()->RefCount = 1; |
| 199 | } |
| 200 | } |
| 201 | |
| 202 | FString &FString::operator = (const FString &other) |
| 203 | { |
no outgoing calls
no test coverage detected