ソースを参照

remoed assert

master
fumfar hiwi 6年前
コミット
73739eecab
2個のファイルの変更3行の追加4行の削除
  1. +2
    -2
      src/eval.cpp
  2. +1
    -2
      src/memory.cpp

+ 2
- 2
src/eval.cpp ファイルの表示

@@ -65,8 +65,8 @@ namespace Slime {
sym,
Memory::copy_lisp_object_except_pairs(next_arg));
}
assert("cs access index out of range",
arg_pos+1 < cs->next_index);
//assert("cs access index out of range",
// arg_pos+1 < cs->next_index);
next_arg = cs->data[++arg_pos];
}
};


+ 1
- 2
src/memory.cpp ファイルの表示

@@ -210,8 +210,7 @@ namespace Slime::Memory {
}
};
char* exe_path = get_exe_dir();
// don't free exe path because it will be used until end of time
Globals::load_path.alloc();
global_symbol_table.alloc();
global_keyword_table.alloc();


読み込み中…
キャンセル
保存