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
105105 // type name compatible with python style
106106 const char *pyname;
107107 // returns '1' if the type represent a unsigned integer
108- int is_unsigned:1;
108+ unsigned int is_unsigned:1;
109109 // returns '1' if the type represent a signed integer
110- int is_signed:1;
110+ unsigned int is_signed:1;
111111 // returns '1' if the type represent a single or double precision
112- int is_float:1;
112+ unsigned int is_float:1;
113113 // returns '1' if the type represent a boolean
114- int is_bool:1;
114+ unsigned int is_bool:1;
115115 // returns '1' if the type represent a sequence
116- int is_sequence:1;
116+ unsigned int is_sequence:1;
117117 // returns '1' if the type represent a scalar
118- int is_scalar:1;
118+ unsigned int is_scalar:1;
119119 // returns '1' if the type represent a vector
120- int is_vector:1;
120+ unsigned int is_vector:1;
121121 // returns the len of multi-vector if the type represent x2 or x3 vector
122122 // otherwise returns 0, e.g. returns 2 if data type is simd_data_vu8x2
123123 int is_vectorx;
You can’t perform that action at this time.
0 commit comments