Skip to content

Commit 1c3fd8b

Browse files
rm debug markers
1 parent eda8d95 commit 1c3fd8b

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/fwrite.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,6 @@ void writePOSIXct(const void *col, int64_t row, char **pch)
438438
ch -= squashDateTime;
439439
write_time(t, &ch);
440440
if (squashDateTime || (m && m%1000==0)) {
441-
Rprintf("here i\n");
442441
// when squashDateTime always write 3 digits of milliseconds even if 000, for consistent scale of squash integer64
443442
// don't use writeInteger() because it doesn't 0 pad which we need here
444443
// integer64 is big enough for squash with milli but not micro; trunc (not round) micro when squash
@@ -450,7 +449,6 @@ void writePOSIXct(const void *col, int64_t row, char **pch)
450449
*ch = '0'+m;
451450
ch += 3;
452451
} else if (m) {
453-
Rprintf("here ii\n");
454452
// microseconds are present and !squashDateTime
455453
*ch++ = dec;
456454
*(ch+5) = '0'+m%10; m/=10;
@@ -474,7 +472,6 @@ void writeNanotime(const void *col, int64_t row, char **pch)
474472
if (x == INT64_MIN) {
475473
write_chars(na, &ch);
476474
} else {
477-
Rprintf("here iii\n");
478475
int d/*days*/, s/*secs*/, n/*nanos*/;
479476
n = x % 1000000000;
480477
x /= 1000000000;

0 commit comments

Comments
 (0)