Skip to content

Commit

Permalink
Reduce iterations count for some tests (4)
Browse files Browse the repository at this point in the history
  • Loading branch information
apolukhin committed Aug 16, 2017
1 parent bfb8a74 commit 84cdf93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Chapter11/08_reading_files/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include <algorithm>

int main(int argc, char* argv[]) {
static const std::size_t filesize = 1024 * 1024 * 128;
static const std::size_t filesize = 1024 * 1024 /** 128*/;
const char filename[] = "test_file.txt";

assert(argc >= 2); // Run with c,m,r or a parameter: ./this_program c
Expand Down

0 comments on commit 84cdf93

Please sign in to comment.