summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2020-04-25 15:01:47 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2020-04-25 15:01:47 -0400
commit7ee5fc2721e40471f01f9377dd901ded4b969a33 (patch)
tree4b7326e96e89607b86b37d38fd0a8754144f370a /eval.c
parent7aa21a12d1b5505ba6258f2a74ce8716e72387c3 (diff)
fixed problems with using future types
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/eval.c b/eval.c
index 88e6f13..9a65ff9 100644
--- a/eval.c
+++ b/eval.c
@@ -4,11 +4,7 @@
You should have received a copy of the GNU General Public License along with toc. If not, see <https://www.gnu.org/licenses/>.
*/
-static Status types_block(Typer *tr, Block *b);
-static Status types_decl(Typer *tr, Declaration *d);
-static Status type_resolve(Typer *tr, Type *t, Location where);
static Status eval_block(Evaluator *ev, Block *b, Value *v);
-static Status eval_expr(Evaluator *ev, Expression *e, Value *v);
static Status eval_address_of(Evaluator *ev, Expression *e, void **ptr);
static Value get_builtin_val(BuiltinVal val);