mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Fix of built in aliases for headers.
This commit is contained in:
@@ -953,10 +953,8 @@ static void sema_recursively_import(Type *type)
|
||||
{
|
||||
if (!type) return;
|
||||
Decl *decl = type_no_export(type);
|
||||
printf("Recursively import %s %p.\n", type->name, decl);
|
||||
if (!decl) return;
|
||||
decl->is_export = true;
|
||||
printf("Recursively import %s.\n", type->name);
|
||||
if (decl->resolve_status != RESOLVE_DONE) return;
|
||||
decl->extname = NULL;
|
||||
assert(!decl->has_extname);
|
||||
|
||||
Reference in New Issue
Block a user