|
@@ -169,6 +169,10 @@ bool StringName::operator!=(const String &p_name) const {
|
|
return !(operator==(p_name));
|
|
return !(operator==(p_name));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+bool StringName::operator!=(const char *p_name) const {
|
|
|
|
+ return !(operator==(p_name));
|
|
|
|
+}
|
|
|
|
+
|
|
bool StringName::operator!=(const StringName &p_name) const {
|
|
bool StringName::operator!=(const StringName &p_name) const {
|
|
// the real magic of all this mess happens here.
|
|
// the real magic of all this mess happens here.
|
|
// this is why path comparisons are very fast
|
|
// this is why path comparisons are very fast
|