Skip to content

Commit 713c5fd

Browse files
committed
changed block_len to 1 MiB
1 parent a8a8e74 commit 713c5fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csv.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ namespace io{
317317

318318
class LineReader{
319319
private:
320-
static const int block_len = 1<<24;
320+
static const int block_len = 1<<20;
321321
std::unique_ptr<char[]>buffer; // must be constructed before (and thus destructed after) the reader!
322322
#ifdef CSV_IO_NO_THREAD
323323
detail::SynchronousReader reader;

0 commit comments

Comments
 (0)