lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> F:\Languages\lua-5.0-work0\src\lib\liolib.c(579) : warning C4702:
> unreachable code

The code is

  exit(luaL_opt_int(L, 1, EXIT_SUCCESS));
  return 0;  /* to avoid warnings */

If we put the "return", some compilers complain. If we do not, others
complain. Does anyone knows a solution?

-- Roberto