diff options
author | lloyd <[email protected]> | 2008-10-01 15:35:01 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-01 15:35:01 +0000 |
commit | 909389b209d97ac3d7f83d76abef9cf943e7e9c7 (patch) | |
tree | 4cbb88cb974873b88ef2fd1ff7be0df4f8cddc4f /doc/examples/make_prime.cpp | |
parent | aaf7a6e172deab17dfffe442b896ccfc178b7318 (diff) |
Line wrap
Diffstat (limited to 'doc/examples/make_prime.cpp')
-rw-r--r-- | doc/examples/make_prime.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/examples/make_prime.cpp b/doc/examples/make_prime.cpp index ab84e1cdc..4d82907f9 100644 --- a/doc/examples/make_prime.cpp +++ b/doc/examples/make_prime.cpp @@ -50,7 +50,8 @@ int main() if(not_new % 100000 == 0) { - for(std::map<int, int>::iterator i = bit_count.begin(); i != bit_count.end(); ++i) + for(std::map<int, int>::iterator i = bit_count.begin(); + i != bit_count.end(); ++i) std::cout << "bit_count[" << i->first << "] = " << i->second << "\n"; std::copy(primes.begin(), primes.end(), |