diff options
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) { |