fixed uninitialized variables and false positives found by CppCheck

This commit is contained in:
Simon Wenner
2018-10-24 22:20:05 +02:00
parent bf957a414a
commit 9fcf9ee813
3 changed files with 7 additions and 4 deletions

View File

@ -2498,7 +2498,7 @@ bool ShaderLanguage::_get_completable_identifier(BlockNode *p_block, CompletionT
identifier = StringName();
TkPos pos;
TkPos pos = { 0, 0 };
Token tk = _get_token();