From b475357cf997c2b3b7b53471e0959da1249c9c6b Mon Sep 17 00:00:00 2001 From: Niels Bross Date: Wed, 17 Jul 2024 16:24:33 +0200 Subject: [PATCH] Fix ncore import --- Codegen.jai | 2 +- Semantic_Analysis.jai | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Codegen.jai b/Codegen.jai index a755843..37075b4 100644 --- a/Codegen.jai +++ b/Codegen.jai @@ -479,4 +479,4 @@ codegen :: (ast_root : *AST_Node, checker_result : Semantic_Check_Result, output } #scope_module -#import "nbrutil"; +#import "ncore"; diff --git a/Semantic_Analysis.jai b/Semantic_Analysis.jai index 63d4f44..99d7669 100644 --- a/Semantic_Analysis.jai +++ b/Semantic_Analysis.jai @@ -8,7 +8,7 @@ // [x] Improve error reporting on mismatched overloads when types don't match, but arity does // [x] Improve error reporting for type mismatches in general. It seems like the expect node is not always correct. -#import "nbrutil"; +#import "ncore"; #import "Hash_Table"; #import "String";