1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Fix MSVC warnings C4701 and C4703: Potentially uninitialized variable used

This commit is contained in:
Rémi Verschelde
2022-09-28 17:05:34 +02:00
parent 14e1f36e61
commit 85fe6ecc32
8 changed files with 17 additions and 15 deletions

View File

@@ -483,7 +483,7 @@ public:
int array_size = 0;
union Value {
bool boolean;
bool boolean = false;
float real;
int32_t sint;
uint32_t uint;