Skip to content

Commit 4c955bd

Browse files
committed
Format
1 parent 70765b3 commit 4c955bd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/type_checker.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -385,9 +385,9 @@ Expr TypeChecker::getTypeAppInternal(std::vector<ExprValue*>& children,
385385
if (hdt->getNumChildren() == 2)
386386
{
387387
// type should be ground by this point.
388-
Assert (hdt->d_children[1]->isGround());
389-
ExprValue * ct = d_state.lookupType(child);
390-
Assert (ct!=nullptr);
388+
Assert(hdt->d_children[1]->isGround());
389+
ExprValue* ct = d_state.lookupType(child);
390+
Assert(ct != nullptr);
391391
if (ct != hdt->d_children[1])
392392
{
393393
success = false;
@@ -404,7 +404,7 @@ Expr TypeChecker::getTypeAppInternal(std::vector<ExprValue*>& children,
404404
else
405405
{
406406
child = d_state.lookupType(child);
407-
Assert (child!=nullptr);
407+
Assert(child != nullptr);
408408
}
409409
if (!success || !match(hdt, child, ctx, visited))
410410
{

0 commit comments

Comments
 (0)