| 131 | } |
| 132 | |
| 133 | const char16_t* Char16String::get_data() const |
| 134 | { |
| 135 | if (size()) |
| 136 | { |
| 137 | return &operator[](0); |
| 138 | } |
| 139 | else |
| 140 | { |
| 141 | return u""; |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | void Char16String::copy_from(const char16_t* p_cstr) |
| 146 | { |
no test coverage detected