Merge pull request #31258 from creikey/fix-redefine

Show that identifier found in function names
This commit is contained in:
Rémi Verschelde
2019-08-12 08:16:15 +02:00
committed by GitHub

View File

@ -961,6 +961,7 @@ bool ShaderLanguage::_find_identifier(const BlockNode *p_block, const Map<String
if (r_type) {
*r_type = IDENTIFIER_FUNCTION;
}
return true;
}
}