mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Fix whitespace in ProfileFunc::PreExpr()
This commit is contained in:
parent
ccd27a3dfa
commit
dc9e7f6d03
1 changed files with 12 additions and 12 deletions
|
@ -340,24 +340,24 @@ TraversalCode ProfileFunc::PreExpr(const Expr* e)
|
|||
return TC_ABORTSTMT;
|
||||
}
|
||||
|
||||
case EXPR_SET_CONSTRUCTOR:
|
||||
{
|
||||
auto sc = static_cast<const SetConstructorExpr*>(e);
|
||||
auto attrs = sc->GetAttrs();
|
||||
case EXPR_SET_CONSTRUCTOR:
|
||||
{
|
||||
auto sc = static_cast<const SetConstructorExpr*>(e);
|
||||
auto attrs = sc->GetAttrs();
|
||||
|
||||
if ( attrs )
|
||||
if ( attrs )
|
||||
constructor_attrs.insert(attrs.get());
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case EXPR_TABLE_CONSTRUCTOR:
|
||||
{
|
||||
auto tc = static_cast<const TableConstructorExpr*>(e);
|
||||
auto attrs = tc->GetAttrs();
|
||||
case EXPR_TABLE_CONSTRUCTOR:
|
||||
{
|
||||
auto tc = static_cast<const TableConstructorExpr*>(e);
|
||||
auto attrs = tc->GetAttrs();
|
||||
|
||||
if ( attrs )
|
||||
if ( attrs )
|
||||
constructor_attrs.insert(attrs.get());
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue