We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5918a9 commit b97aa0bCopy full SHA for b97aa0b
core/string/node_path.cpp
@@ -117,6 +117,12 @@ bool NodePath::operator==(const NodePath &p_path) const {
117
return false;
118
}
119
120
+ if (data->hash_cache_valid && p_path.data->hash_cache_valid) {
121
+ if (data->hash_cache != p_path.data->hash_cache) {
122
+ return false;
123
+ }
124
125
+
126
if (data->absolute != p_path.data->absolute) {
127
128
0 commit comments