Rework the entry point
Todas as verificações foram bem sucedidas
The build was successful.

* some functions were not used and have been removed
 * some parameters seemed to be useless and have been removed
 * code cleanup
Esse commit está contido em:
2018-08-14 13:45:27 +02:00
commit ece036b214
6 arquivos alterados com 30 adições e 75 exclusões

Ver Arquivo

@@ -186,8 +186,7 @@ int main(int argc, char **argv) {
rc = ph7_compile_file(
pEngine, /* PH7 Engine */
argv[n], /* Path to the PHP file to compile */
&pVm, /* OUT: Compiled PHP program */
0 /* IN: Compile flags */
&pVm /* OUT: Compiled PHP program */
);
if(rc != PH7_OK) { /* Compile error */
if(rc == PH7_IO_ERR) {