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

Style: Apply clang-tidy's modernize-use-default-member-init

This commit is contained in:
Rémi Verschelde
2021-04-05 13:36:41 +02:00
parent 0f0c0e5933
commit 65a2888057
8 changed files with 62 additions and 99 deletions

View File

@@ -216,7 +216,7 @@ Scope::~Scope() {
// ------------------------------------------------------------------------------------------------
Parser::Parser(const TokenList &tokens, bool is_binary) :
tokens(tokens), last(), current(), 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);
}