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

Style: apply clang-format (3.9.1) to current source

This commit is contained in:
Rémi Verschelde
2017-12-11 15:18:06 +01:00
parent b3a1821b46
commit acb7107720
12 changed files with 44 additions and 44 deletions

View File

@@ -2137,10 +2137,9 @@ void GDParser::_parse_extends(ClassNode *p_class) {
case GDTokenizer::TK_IDENTIFIER: {
StringName identifier = tokenizer->get_token_identifier();
p_class->extends_class.push_back(identifier);
}
break;
StringName identifier = tokenizer->get_token_identifier();
p_class->extends_class.push_back(identifier);
} break;
case GDTokenizer::TK_PERIOD:
break;