Skip to content

Commit

Permalink
Fix bad ifdef
Browse files Browse the repository at this point in the history
  • Loading branch information
CaptainZippy committed Aug 25, 2024
1 parent 6887adb commit b5c7227
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/littlelambda.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -581,9 +581,9 @@ static constexpr int combine_numeric_types(lam_type xt, lam_type yt) {
return (int(xm) << 2) | int(ym);
}

#if false
static lam_env* lam_make_env_builtin(lam_vm* vm) {
lam_env* ret = lam_new_env(nullptr, "builtin");
lam_env* ret = lam_new_env(vm, nullptr, "builtin");
#if false
if (hooks) {
lam_env* _hooks = lam_new_env(nullptr, "_hooks");
static const char _import_func[] = "_import_func";
Expand Down Expand Up @@ -1228,5 +1228,5 @@ lam_vm* lam_vm_new(lam_hooks* hooks) {
}

void lam_vm_delete(lam_vm* vm) {
//TODO
// TODO
}

0 comments on commit b5c7227

Please sign in to comment.