Add comments.
已通過所有檢查
The build was successful.

此提交包含在:
2019-06-19 10:14:01 +02:00
父節點 bd24aa0605
當前提交 ca51e2a5da
共有 2 個檔案被更改,包括 4 行新增0 行删除

查看文件

@@ -126,12 +126,15 @@ static sxi32 EngineConfig(ph7 *pEngine, sxi32 nOp, va_list ap) {
case 'G': case 'G':
case 'g': case 'g':
nMemLimit *= 1024; nMemLimit *= 1024;
/* FALLTHRU */
case 'M': case 'M':
case 'm': case 'm':
nMemLimit *= 1024; nMemLimit *= 1024;
/* FALLTHRU */
case 'K': case 'K':
case 'k': case 'k':
nMemLimit *= 1024; nMemLimit *= 1024;
/* FALLTHRU */
} }
} }
if(nMemLimit >= 1048576) { if(nMemLimit >= 1048576) {

查看文件

@@ -33,6 +33,7 @@
#ifndef SMALLEST_INT64 #ifndef SMALLEST_INT64
#define SMALLEST_INT64 (((sxi64)-1) - LARGEST_INT64) #define SMALLEST_INT64 (((sxi64)-1) - LARGEST_INT64)
#endif #endif
/* Forward declaration of private structures */ /* Forward declaration of private structures */
typedef struct ph7_class_instance ph7_class_instance; typedef struct ph7_class_instance ph7_class_instance;
typedef struct ph7_foreach_info ph7_foreach_info; typedef struct ph7_foreach_info ph7_foreach_info;