File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -182,17 +182,17 @@ typedef struct ThreadLocalFreadParsingContext
182182{
183183 // Pointer that serves as a starting point for all offsets within the `lenOff`
184184 // structs.
185- const char * __restrict__ anchor ;
185+ const char * restrict anchor ;
186186
187187 // Output buffers for values with different alignment requirements. For
188188 // example all `lenOff` columns, `double` columns and `int64` columns will be
189189 // written to buffer `buff8`; at the same time `bool` and `int8` columns will
190190 // be stored in memory buffer `buff1`.
191191 // Within each buffer the data is stored in row-major order, i.e. in the same
192192 // order as in the original CSV file.
193- void * __restrict__ buff8 ;
194- void * __restrict__ buff4 ;
195- void * __restrict__ buff1 ;
193+ void * restrict buff8 ;
194+ void * restrict buff4 ;
195+ void * restrict buff1 ;
196196
197197 // Size (in bytes) for a single row of data within the buffers `buff8`,
198198 // `buff4` and `buff1` correspondingly.
You can’t perform that action at this time.
0 commit comments