Skip to content

Commit 3473ef5

Browse files
authored
Merge pull request #12 from bugparty/codex/update-misleading-comment-in-main.cpp
Fix SIZE comment
2 parents 30bf30b + 46fa975 commit 3473ef5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <chrono>
44
#include <iostream>
55
#include <vector>
6-
constexpr size_t SIZE = 1000000000; // 10 million elements
6+
constexpr size_t SIZE = 1000000000; // 1 billion elements
77
// Benchmarks the performance of std::vector<bool> for setting, accessing, and traversing elements.
88
void benchmarkStdVectorBool(){
99

0 commit comments

Comments
 (0)