File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -105,19 +105,19 @@ typedef struct
105
105
// type name compatible with python style
106
106
const char *pyname;
107
107
// returns '1' if the type represent a unsigned integer
108
- int is_unsigned:1;
108
+ unsigned int is_unsigned:1;
109
109
// returns '1' if the type represent a signed integer
110
- int is_signed:1;
110
+ unsigned int is_signed:1;
111
111
// returns '1' if the type represent a single or double precision
112
- int is_float:1;
112
+ unsigned int is_float:1;
113
113
// returns '1' if the type represent a boolean
114
- int is_bool:1;
114
+ unsigned int is_bool:1;
115
115
// returns '1' if the type represent a sequence
116
- int is_sequence:1;
116
+ unsigned int is_sequence:1;
117
117
// returns '1' if the type represent a scalar
118
- int is_scalar:1;
118
+ unsigned int is_scalar:1;
119
119
// returns '1' if the type represent a vector
120
- int is_vector:1;
120
+ unsigned int is_vector:1;
121
121
// returns the len of multi-vector if the type represent x2 or x3 vector
122
122
// otherwise returns 0, e.g. returns 2 if data type is simd_data_vu8x2
123
123
int is_vectorx;
You can’t perform that action at this time.
0 commit comments