| 323 | } |
| 324 | |
| 325 | bool operator==(const String &p_name, const StringName &p_string_name) { |
| 326 | return p_string_name.operator==(p_name); |
| 327 | } |
| 328 | bool operator!=(const String &p_name, const StringName &p_string_name) { |
| 329 | return p_string_name.operator!=(p_name); |
| 330 | } |
nothing calls this directly
no test coverage detected