1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-28 16:07:14 +00:00

Merge pull request #91454 from akien-mga/coverity-checks

Fix Steam input "crc" errors, and some other Coverity reports of uninitialized scalar variable
This commit is contained in:
Rémi Verschelde
2024-06-03 10:35:38 +02:00
5 changed files with 25 additions and 25 deletions

View File

@@ -236,7 +236,7 @@ struct ReferenceContext {
/**
* Include the declaration of the current symbol.
*/
bool includeDeclaration;
bool includeDeclaration = false;
};
struct ReferenceParams : TextDocumentPositionParams {