diff options
author | lloyd <[email protected]> | 2011-10-06 15:54:03 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2011-10-06 15:54:03 +0000 |
commit | 7939e91a733c8c50706de2fb090fcb60f7f229c8 (patch) | |
tree | bd9f24eefbae7a49e4832ac728ea83c80da99dc4 /src/stream | |
parent | ca5581260445e70ed4d038091acb88949b6101ce (diff) | |
parent | 2877bbc0828a92de94d3628455e92c4298a2ac7d (diff) |
propagate from branch 'net.randombit.botan' (head 29dfb73a5efec220ebafcb9c1d7a32bb9d63461c)
to branch 'net.randombit.botan.cxx11' (head a842d86b2b9593318fbce5868c3d1278f8b3a037)
Diffstat (limited to 'src/stream')
-rw-r--r-- | src/stream/arc4/arc4.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stream/arc4/arc4.cpp b/src/stream/arc4/arc4.cpp index 6eea7bb45..a25b68185 100644 --- a/src/stream/arc4/arc4.cpp +++ b/src/stream/arc4/arc4.cpp @@ -85,7 +85,7 @@ std::string ARC4::name() const { if(SKIP == 0) return "ARC4"; if(SKIP == 256) return "MARK-4"; - else return "RC4_skip(" + to_string(SKIP) + ")"; + else return "RC4_skip(" + std::to_string(SKIP) + ")"; } /* |