summaryrefslogtreecommitdiff
path: root/ida.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-07-30 13:07:33 -0400
committerJeffrey Walton <noloader@gmail.com>2015-07-30 13:07:33 -0400
commit77206baf56e6feb111f54678038307ac216128d5 (patch)
tree54f85d3fd471860a2d533a7acb30a1d9cb4d6897 /ida.cpp
parent7ad12ab5b05eb2ee595e8900a5d2d101740c7a94 (diff)
downloadcryptopp-git-77206baf56e6feb111f54678038307ac216128d5.tar.gz
Whitespace checkin
Diffstat (limited to 'ida.cpp')
-rw-r--r--ida.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ida.cpp b/ida.cpp
index 06df841b..6dda196b 100644
--- a/ida.cpp
+++ b/ida.cpp
@@ -380,7 +380,7 @@ size_t PaddingRemover::Put2(const byte *begin, size_t length, int messageEnd, bo
if (m_possiblePadding)
{
- size_t len = find_if(begin, end, bind2nd(not_equal_to<byte>(), byte(0))) - begin;
+ size_t len = find_if (begin, end, bind2nd(not_equal_to<byte>(), byte(0))) - begin;
m_zeroCount += len;
begin += len;
if (begin == end)
@@ -401,7 +401,7 @@ size_t PaddingRemover::Put2(const byte *begin, size_t length, int messageEnd, bo
#else
typedef reverse_iterator<const byte *> RevIt;
#endif
- const byte *x = find_if(RevIt(end), RevIt(begin), bind2nd(not_equal_to<byte>(), byte(0))).base();
+ const byte *x = find_if (RevIt(end), RevIt(begin), bind2nd(not_equal_to<byte>(), byte(0))).base();
if (x != begin && *(x-1) == 1)
{
AttachedTransformation()->Put(begin, x-begin-1);