Skip to content

Commit

Permalink
Undo unrelated whitespaces changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jennybc committed Nov 28, 2023
1 parent 2393b89 commit c819a93
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
7 changes: 3 additions & 4 deletions src/vroom_big_int.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,9 @@ class vroom_big_int : public vroom_vec {
static Rboolean
Inspect(SEXP x, int, int, int, void (*)(SEXP, int, int, int)) {
Rprintf(
"vroom_big_int (len=%" R_PRIdXLEN_T ", materialized=%s)\n",
Length(x),
R_altrep_data2(x) != R_NilValue ? "T" : "F");

"vroom_big_int (len=%" R_PRIdXLEN_T ", materialized=%s)\n",
Length(x),
R_altrep_data2(x) != R_NilValue ? "T" : "F");
return TRUE;
}

Expand Down
7 changes: 3 additions & 4 deletions src/vroom_chr.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,9 @@ struct vroom_chr : vroom_vec {
static Rboolean
Inspect(SEXP x, int, int, int, void (*)(SEXP, int, int, int)) {
Rprintf(
"vroom_chr (len=%" R_PRIdXLEN_T ", materialized=%s)\n",
Length(x),
R_altrep_data2(x) != R_NilValue ? "T" : "F");

"vroom_chr (len=%" R_PRIdXLEN_T ", materialized=%s)\n",
Length(x),
R_altrep_data2(x) != R_NilValue ? "T" : "F");
return TRUE;
}

Expand Down

0 comments on commit c819a93

Please sign in to comment.