diff options
Diffstat (limited to 'src/parse/numbers.c')
| -rw-r--r-- | src/parse/numbers.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/parse/numbers.c b/src/parse/numbers.c index 39851f2a..c12a68b2 100644 --- a/src/parse/numbers.c +++ b/src/parse/numbers.c @@ -17,7 +17,6 @@ static const double RADIANS_PER_DEGREE = 0.0174532925199432957692369076848861271344287188854172545609719144; -public ast_t *parse_int(parse_ctx_t *ctx, const char *pos) { const char *start = pos; (void)match(&pos, "-"); @@ -51,7 +50,6 @@ ast_t *parse_int(parse_ctx_t *ctx, const char *pos) { return NewAST(ctx->file, start, pos, Int, .str = str); } -public ast_t *parse_num(parse_ctx_t *ctx, const char *pos) { const char *start = pos; bool negative = match(&pos, "-"); |
