diff options
author | lloyd <[email protected]> | 2010-10-15 16:01:43 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-10-15 16:01:43 +0000 |
commit | 76de66140226728fd22f1dfda976e7214d79a62c (patch) | |
tree | fa086c236b0a6ffd1c0ea4aa19a7174cd3cf73ea /doc/examples/hash_quickly.cpp | |
parent | 74fe6649c298e34beeacc190f0d557e5421fe79e (diff) |
Use binary I/O where needed
Diffstat (limited to 'doc/examples/hash_quickly.cpp')
-rw-r--r-- | doc/examples/hash_quickly.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/hash_quickly.cpp b/doc/examples/hash_quickly.cpp index bf6fe1d82..005a6d719 100644 --- a/doc/examples/hash_quickly.cpp +++ b/doc/examples/hash_quickly.cpp @@ -83,7 +83,7 @@ int main(int argc, char* argv[]) for(size_t i = 1; argv[i]; ++i) { - std::ifstream in(argv[i]); + std::ifstream in(argv[i], std::ios::binary); if(!in) continue; |