소스 검색

small signed/unsigned comparison fixed

master
FelixBrendel 6 년 전
부모
커밋
0d6835da39
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/eval.cpp

+ 1
- 1
src/eval.cpp 파일 보기

@@ -473,7 +473,7 @@ namespace Slime {
Globals::Current_Execution.nass.reserve(pc->value.continuation->nass.next_index);
Globals::Current_Execution.nass.next_index = pc->value.continuation->nass.next_index;

for (int i = 0; i < pc->value.continuation->nass.next_index; ++i) {
for (u32 i = 0; i < pc->value.continuation->nass.next_index; ++i) {
Globals::Current_Execution.nass.data[i].alloc();
for (Globals::Current_Execution.nass.data[i].next_index = 0;
Globals::Current_Execution.nass.data[i].next_index < pc->value.continuation->nass.data[i].next_index;)


불러오는 중...
취소
저장