Skip to content

Commit 7932412

Browse files
oops
1 parent e60f0d4 commit 7932412

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fwrite.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,13 +241,13 @@ void writeFloat64(const void *col, int64_t row, char **pch)
241241
if (l % 10 >= 5) l += 10; // use the last digit to round
242242
l /= 10;
243243
if (l == 0) {
244-
# nocov start. Very likely not needed as such numbers (e.g. 2^-1075) likely not representable in R.
244+
// # nocov start. Very likely not needed as such numbers (e.g. 2^-1075) likely not representable in R.
245245
if (*(ch - 1) == '-') ch--;
246246
*ch++ = '0';
247247
if (forceDecimal) {
248248
*ch++ = dec;
249249
}
250-
# nocov end
250+
// # nocov end
251251
} else {
252252
// Count trailing zeros and therefore s.f. present in l
253253
int trailZero = 0;

0 commit comments

Comments
 (0)