1. 29 2月, 2020 1 次提交
    • D
      [finsh]Minor optimization in finsh_compiler.c · fac95192
      David Lin 提交于
          The code just clean the first member of array 'finsh_vm_stack', but it works well in the past years, 
                  memset(&finsh_vm_stack[0], 0, sizeof(finsh_vm_stack[0]));
          Is it better to re-code as below, it will be more readable and robust:
                  memset(&finsh_vm_stack[0], 0, sizeof(finsh_vm_stack));
      fac95192
  2. 28 2月, 2020 5 次提交
  3. 27 2月, 2020 1 次提交
  4. 26 2月, 2020 13 次提交
  5. 25 2月, 2020 3 次提交
  6. 24 2月, 2020 15 次提交
  7. 23 2月, 2020 2 次提交