Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-10-04 | Avoid redefinition warning from clang when building cmapdump.c | Joseph Heenan | |
In file included from scripts/cmapdump.c:19: scripts/../source/fitz/ftoa.c:30:23: warning: redefinition of typedef 'ulong' is a C11 feature [-Wtypedef-redefinition] typedef unsigned long ulong; ^ scripts/../source/fitz/strtod.c:30:23: note: previous definition is here typedef unsigned long ulong; ^ 1 warning generated. (Apparently in earlier versions of clang this is an error.) | |||
2014-09-22 | Fix 695467: Add and use fz_ftoa function (like dtoa but with floats). | Tor Andersson | |
The dtoa function is for doubles (which is what MuJS uses) but for MuPDF we only need and want float precision in our output formatting. |