Apply 'make format'

This commit is contained in:
github action 2023-06-03 14:11:23 +00:00
parent dc34968fe7
commit a7b0551d23
1 changed files with 1 additions and 2 deletions

View File

@ -2135,8 +2135,7 @@ void AstVar::dump(std::ostream& str) const {
}
bool AstVar::same(const AstNode* samep) const {
const AstVar* const asamep = static_cast<const AstVar*>(samep);
return name() == asamep->name()
&& varType() == asamep->varType();
return name() == asamep->name() && varType() == asamep->varType();
}
void AstScope::dump(std::ostream& str) const {
this->AstNode::dump(str);