| 1701 | } |
| 1702 | |
| 1703 | void String::print_unicode_error(const String &p_message, bool p_critical) const { |
| 1704 | if (p_critical) { |
| 1705 | print_error(vformat(U"Unicode parsing error, some characters were replaced with � (U+FFFD): %s", p_message)); |
| 1706 | } else { |
| 1707 | print_error(vformat("Unicode parsing error: %s", p_message)); |
| 1708 | } |
| 1709 | } |
| 1710 | |
| 1711 | CharString String::ascii(bool p_allow_extended) const { |
| 1712 | if (!length()) { |
nothing calls this directly
no test coverage detected