diff options
| author | gingerBill <bill@gingerbill.org> | 2022-12-18 21:24:45 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-12-18 21:24:45 +0000 |
| commit | 056ba1ed13b36c8a85d7415f5a288a4780cb55f8 (patch) | |
| tree | 0fa31bdb1311e63e0da8740b6517b653266c0d6a /src/exact_value.cpp | |
| parent | 93a1f2bf61a70eaec26d54c609ce9495f8c5209a (diff) | |
Even more `gb_internal` everywhere
Diffstat (limited to 'src/exact_value.cpp')
| -rw-r--r-- | src/exact_value.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/exact_value.cpp b/src/exact_value.cpp index d3ea4be68..453909a15 100644 --- a/src/exact_value.cpp +++ b/src/exact_value.cpp @@ -6,7 +6,7 @@ struct Ast; struct HashKey; struct Type; struct Entity; -bool are_types_identical(Type *x, Type *y); +gb_internal bool are_types_identical(Type *x, Type *y); struct Complex128 { f64 real, imag; @@ -969,10 +969,10 @@ gb_internal bool compare_exact_values(TokenKind op, ExactValue x, ExactValue y) return false; } -Entity *strip_entity_wrapping(Ast *expr); -Entity *strip_entity_wrapping(Entity *e); +gb_internal Entity *strip_entity_wrapping(Ast *expr); +gb_internal Entity *strip_entity_wrapping(Entity *e); -gbString write_expr_to_string(gbString str, Ast *node, bool shorthand); +gb_internal gbString write_expr_to_string(gbString str, Ast *node, bool shorthand); gb_internal gbString write_exact_value_to_string(gbString str, ExactValue const &v, isize string_limit=36) { switch (v.kind) { |