mirror of
https://github.com/michaelrsweet/pdfio.git
synced 2025-07-16 13:59:53 +02:00
Switch to using double for numbers, since they are also used to record lengths
and other potentially large contents.
This commit is contained in:
@ -160,7 +160,7 @@ typedef struct _pdfio_value_s // Value structure
|
||||
unsigned short generation; // Generation number
|
||||
} indirect; // Indirect object reference
|
||||
const char *name; // Name value
|
||||
float number; // Number value
|
||||
double number; // Number value
|
||||
const char *string; // String value
|
||||
} value; // Value union
|
||||
} _pdfio_value_t;
|
||||
|
Reference in New Issue
Block a user