diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2016-10-12 14:47:40 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2016-10-12 14:47:40 +0200 |
commit | 177f4b7d403d568293ecd101dc4ed227228dc450 (patch) | |
tree | f1924f72112927e80a83da273d9ff40c7a9efadc /source | |
parent | 69c379990d83d83682b23eac3ddf390c0d85e976 (diff) | |
download | mupdf-177f4b7d403d568293ecd101dc4ed227228dc450.tar.xz |
Remove unused function.
Diffstat (limited to 'source')
-rw-r--r-- | source/xps/xps-glyphs.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/source/xps/xps-glyphs.c b/source/xps/xps-glyphs.c index dc414f57..242c4dd2 100644 --- a/source/xps/xps-glyphs.c +++ b/source/xps/xps-glyphs.c @@ -289,12 +289,6 @@ xps_parse_digits(char *s, int *digit) return s; } -static inline int is_real_num_char(int c) -{ - return (c >= '0' && c <= '9') || - c == 'e' || c == 'E' || c == '+' || c == '-' || c == '.'; -} - static char * xps_parse_real_num(char *s, float *number, int *override) { |