Skip to content

Commit df15969

Browse files
committed
Reformat code to avoid conflicts during merge
1 parent b1754db commit df15969

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

source/sema.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,9 +250,10 @@ class sema
250250
{
251251
auto const& decl = std::get<symbol::active::declaration>(i->sym);
252252

253-
// Don't look beyond the current function
254253
assert(decl.declaration);
255-
if (decl.declaration->type.index() == declaration_node::function) {
254+
if (
255+
decl.declaration->type.index() == declaration_node::function // Don't look beyond the current function
256+
) {
256257
return nullptr;
257258
}
258259

0 commit comments

Comments
 (0)