diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-11-20 21:31:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-20 21:31:12 +0100 |
commit | 083d088de3fe7cd5d825cebebc46ce32fc87b4b0 (patch) | |
tree | 9b2524105bf989f6ac0ad1c488ac493f558a391f /editor/doc/doc_data.h | |
parent | 719254ae0d4e1b7c9be36a4399809caf270d7e86 (diff) | |
parent | 99d8626f4a313471410db421891e90fe768cd929 (diff) |
Merge pull request #33583 from qarmin/fix_overflows_unitialized
Fix some overflows and unitialized variables
Diffstat (limited to 'editor/doc/doc_data.h')
-rw-r--r-- | editor/doc/doc_data.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/doc/doc_data.h b/editor/doc/doc_data.h index 6d601f0dce..b722c324d6 100644 --- a/editor/doc/doc_data.h +++ b/editor/doc/doc_data.h @@ -78,6 +78,9 @@ public: bool operator<(const PropertyDoc &p_prop) const { return name < p_prop.name; } + PropertyDoc() { + overridden = false; + } }; struct ClassDoc { |