summaryrefslogtreecommitdiff
path: root/core/string/string_name.h
diff options
context:
space:
mode:
authorYuri Rubinsky <chaosus89@gmail.com>2022-12-20 17:22:44 +0300
committerYuri Rubinsky <chaosus89@gmail.com>2022-12-20 17:25:54 +0300
commit522d4243bfd2fcb5de7597e7829ad3b99df68244 (patch)
tree5592153054571233035140572991dd903e885e9d /core/string/string_name.h
parent2a04b18d37de6c6e621db5a9dfd1cd0da5ccb015 (diff)
Add missing != operator to `StringName`
Diffstat (limited to 'core/string/string_name.h')
-rw-r--r--core/string/string_name.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/string/string_name.h b/core/string/string_name.h
index ff4c41af94..6a2420e02a 100644
--- a/core/string/string_name.h
+++ b/core/string/string_name.h
@@ -102,6 +102,7 @@ public:
bool operator==(const String &p_name) const;
bool operator==(const char *p_name) const;
bool operator!=(const String &p_name) const;
+ bool operator!=(const char *p_name) const;
_FORCE_INLINE_ bool is_node_unique_name() const {
if (!_data) {