| 142 | |
| 143 | |
| 144 | bool String::copy() |
| 145 | { |
| 146 | if (!alloced) |
| 147 | { |
| 148 | Alloced_length=0; // Force realloc |
| 149 | return realloc(str_length); |
| 150 | } |
| 151 | return FALSE; |
| 152 | } |
| 153 | |
| 154 | /** |
| 155 | Copies the internal buffer from str. If this String has a private heap |
nothing calls this directly
no test coverage detected