Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
kimwalisch committed Nov 9, 2024
1 parent 618fd3d commit 7bc93c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/primesieve/PreSieve_Tables.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ int main()
if (j + 1 < buffers[i].size())
std::cout << (((j+1) % 20 == 0) ? "," : ", ");
}
std::cout << " }," << std::endl;
std::cout << (i + 1 < buffers.size() ? " }," : " }") << std::endl;
}

std::cout << "}};" << std::endl;
Expand Down Expand Up @@ -10860,7 +10860,7 @@ const primesieve::Array<std::initializer_list<uint8_t>, 8> buffers =
0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xfb, 0xff, 0xf7, 0xff, 0xff, 0xbf,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xf7, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0x7f, 0xfe, 0xff, 0xff },
0xff, 0xff, 0xff, 0x7f, 0xfe, 0xff, 0xff }
}};

} // namespace
Expand Down

0 comments on commit 7bc93c0

Please sign in to comment.