summaryrefslogtreecommitdiff
path: root/modules/fbx/fbx_parser/FBXParser.cpp
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-01-29 13:46:38 +0100
committerGitHub <noreply@github.com>2022-01-29 13:46:38 +0100
commit2f57a11ed9b383706b72783c0d9b1e869774e08a (patch)
tree1b2b19bbc51b9b6ee71b3d7599092bdaa7b6dbee /modules/fbx/fbx_parser/FBXParser.cpp
parent9467350f37089eb3f4ef7de683daba28b0c69dec (diff)
parent8a0a3acceee804b91afe31022cf0310c01162f73 (diff)
Merge pull request #55785 from nathanfranke/clang-tidy
Diffstat (limited to 'modules/fbx/fbx_parser/FBXParser.cpp')
-rw-r--r--modules/fbx/fbx_parser/FBXParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/fbx/fbx_parser/FBXParser.cpp b/modules/fbx/fbx_parser/FBXParser.cpp
index d8ccb4179c..e345b7fc18 100644
--- a/modules/fbx/fbx_parser/FBXParser.cpp
+++ b/modules/fbx/fbx_parser/FBXParser.cpp
@@ -235,7 +235,7 @@ Scope::~Scope() {
// ------------------------------------------------------------------------------------------------
Parser::Parser(const TokenList &tokens, bool is_binary) :
- corrupt(false), tokens(tokens), cursor(tokens.begin()), is_binary(is_binary) {
+ tokens(tokens), cursor(tokens.begin()), is_binary(is_binary) {
root = new_Scope(*this, true);
scopes.push_back(root);
}