From: Eric F. <efe...@ph...> - 2008-07-07 10:44:53
|
Hi, I was studying the code of compiler.c and saw something weird. The Win32 compilation function is called (line 61): compiled_code_t *Compiler_compile_win32_tcc(const char *sourceCode) but it is called there (line 277): #ifdef WIN32 code = Compiler_compile_with_tcc(sourceCode); #else Since I do not compile under Windows, I do not get compilation error, but isn't there a function name discrepancy here? Eric |