WIP/cpp -> next #31

已关闭
crtxcr 请求将 16 次代码提交从 WIP/cpp 合并至 next
仅显示提交 278ae31e2e 的更改 - 显示所有提交

查看文件

@ -698,7 +698,7 @@ uint64_t exile_vows_from_str(const char *str)
++str;
}
int found = 0;
for(int i = 0; i < sizeof(str_to_vow_map)/sizeof(str_to_vow_map[0]); i++)
for(size_t i = 0; i < sizeof(str_to_vow_map)/sizeof(str_to_vow_map[0]); i++)
{
if(strcmp(str_to_vow_map[i].str, current) == 0)
{