Fix uninitialized variables in Line2D, JSONParseResult and TileMap

This commit is contained in:
Rémi Verschelde 2019-06-29 21:45:14 +02:00
parent 26f99beac3
commit 850a54a2a5
6 changed files with 8 additions and 3 deletions

View file

@ -805,6 +805,9 @@ public:
void set_result(const Variant &p_result);
Variant get_result() const;
JSONParseResult() :
error_line(-1) {}
};
class _JSON : public Object {