We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dc11de commit d2d4596Copy full SHA for d2d4596
ext/bcmath/libbcmath/src/bcmath.h
@@ -39,11 +39,11 @@ typedef enum {PLUS, MINUS} sign;
39
typedef struct bc_struct *bc_num;
40
41
typedef struct bc_struct {
42
- size_t n_len; /* The number of digits before the decimal point. */
43
- size_t n_scale; /* The number of digits after the decimal point. */
44
- char *n_value; /* The number. Not zero char terminated. */
45
- int n_refs; /* The number of pointers to this number. */
46
- sign n_sign;
+ size_t n_len; /* The number of digits before the decimal point. */
+ size_t n_scale; /* The number of digits after the decimal point. */
+ char *n_value; /* The number. Not zero char terminated. */
+ unsigned int n_refs; /* The number of pointers to this number. */
+ sign n_sign;
47
} bc_struct;
48
49
#ifdef HAVE_CONFIG_H
0 commit comments