Move of const to separate file and removal of old concat code.

This commit is contained in:
Christoffer Lerno
2024-09-04 09:34:51 +02:00
parent 59ff94c005
commit 63fc77a861
8 changed files with 567 additions and 830 deletions

View File

@@ -513,7 +513,7 @@ void sema_print_inline(SemaContext *context)
InliningSpan *inlined_at = context->inlined_at;
while (inlined_at)
{
sema_error_prev_at(inlined_at->span, "Inlined from here.");
sema_note_prev_at(inlined_at->span, "Inlined from here.");
inlined_at = inlined_at->prev;
}
}