Skip to content

Commit e4d20fe

Browse files
Merge pull request #6957 from badasahog/devBranch2
replaced `__restrict__` with `restrict`
2 parents 0bc19be + 0e19939 commit e4d20fe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/fread.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)