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
commit 50a4ed3d13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
}
}