From c2ca24a486319c0e8b9a5cd0c377a9d66eb036d3 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sun, 17 Jun 2018 10:58:59 +0100 Subject: Big renaming: `AstNode` to `Ast` --- src/exact_value.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/exact_value.cpp') diff --git a/src/exact_value.cpp b/src/exact_value.cpp index 7012d4db5..1f07e2ee6 100644 --- a/src/exact_value.cpp +++ b/src/exact_value.cpp @@ -3,7 +3,7 @@ // TODO(bill): Big numbers // IMPORTANT TODO(bill): This needs to be completely fixed!!!!!!!! -struct AstNode; +struct Ast; struct HashKey; struct Type; struct Entity; @@ -37,8 +37,8 @@ struct ExactValue { f64 value_float; i64 value_pointer; Complex128 value_complex; - AstNode * value_compound; - AstNode * value_procedure; + Ast * value_compound; + Ast * value_procedure; Entity * value_entity; }; }; @@ -73,7 +73,7 @@ HashKey hash_exact_value(ExactValue v) { } -ExactValue exact_value_compound(AstNode *node) { +ExactValue exact_value_compound(Ast *node) { ExactValue result = {ExactValue_Compound}; result.value_compound = node; return result; @@ -123,7 +123,7 @@ ExactValue exact_value_pointer(i64 ptr) { return result; } -ExactValue exact_value_procedure(AstNode *node) { +ExactValue exact_value_procedure(Ast *node) { ExactValue result = {ExactValue_Procedure}; result.value_procedure = node; return result; -- cgit v1.2.3