Skip to content

Commit 4bda6da

Browse files
authored
Remove 'typedef R_xlen_t RLEN' in data.table.h (#4465)
1 parent f477fac commit 4bda6da

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/data.table.h

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,6 @@
1616
// #include <signal.h> // the debugging machinery + breakpoint aidee
1717
// raise(SIGINT);
1818

19-
// data.table depends on R>=3.0.0 when R_xlen_t was introduced
20-
// Before R 3.0.0, RLEN used to be switched to R_len_t as R_xlen_t wasn't available.
21-
// We could now replace all RLEN with R_xlen_t directly. Or keep RLEN for the shorter
22-
// name so as not to have to check closely one letter difference R_xlen_t/R_len_t. We
23-
// might also undefine R_len_t to ensure not to use it.
24-
typedef R_xlen_t RLEN;
25-
2619
#define IS_UTF8(x) (LEVELS(x) & 8)
2720
#define IS_ASCII(x) (LEVELS(x) & 64)
2821
#define IS_LATIN(x) (LEVELS(x) & 4)

0 commit comments

Comments
 (0)