klisp

an open source interpreter for the Kernel Programming Language.
git clone http://git.hanabi.in/repos/klisp.git
Log | Files | Refs | README

commit d1151169f9fdb7c724d3415d8ca3f68e8c317758
parent 318e121d3dd1b1d195e01ba18a7b4039905c0b09
Author: Andres Navarro <canavarro82@gmail.com>
Date:   Wed, 29 Feb 2012 00:37:18 -0300

Updated TODO. Fixed some warnings that showed compiling in Windows.

Diffstat:
MTODO | 10+++-------
Msrc/kgcombiners.c | 2++
Msrc/kgcontrol.c | 1+
Msrc/kreal.c | 2++
4 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/TODO b/TODO @@ -1,17 +1,13 @@ * Release 0.3 ** Test *** Windows - - build - - test cases -*** Linux - - build - - test cases + - build (clean) *** MacOS - build - test cases -** Fix +** Makefile *** Windows - - delete-file problem in Windows (do GC and retry) + - problem with clean * Release 0.4+ ** refactor: *** clean stand alone interpreter diff --git a/src/kgcombiners.c b/src/kgcombiners.c @@ -404,6 +404,8 @@ void map(klisp_State *K) &res_apairs, &res_cpairs); app_pairs = app_apairs + app_cpairs; res_pairs = res_apairs + res_cpairs; + UNUSED(app_pairs); + UNUSED(res_pairs); /* create the list of parameters to app */ lss = map_for_each_transpose(K, lss, app_apairs, app_cpairs, diff --git a/src/kgcontrol.c b/src/kgcontrol.c @@ -356,6 +356,7 @@ void for_each(klisp_State *K) map_for_each_get_metrics(K, lss, &app_apairs, &app_cpairs, &res_apairs, &res_cpairs); app_pairs = app_apairs + app_cpairs; + UNUSED(app_pairs); res_pairs = res_apairs + res_cpairs; /* create the list of parameters to app */ diff --git a/src/kreal.c b/src/kreal.c @@ -382,6 +382,8 @@ int32_t simple_fixup(klisp_State *K, Bigint *f, Bigint *p, Bigint *r, mp_int_clear(K, tmp); mp_int_clear(K, tmp2); mp_int_clear(K, one); + + UNUSED(res); return k; }