summaryrefslogtreecommitdiff
path: root/ida.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-04-29 10:25:18 -0400
committerJeffrey Walton <noloader@gmail.com>2016-04-29 10:25:18 -0400
commit1ce593357f92a8789be2363fc5067f6245016931 (patch)
tree89868ea0dac42bc705dea4c75701d807332e2ba3 /ida.cpp
parentc11d334665576ac4963b5d895a500f576914c689 (diff)
downloadcryptopp-git-1ce593357f92a8789be2363fc5067f6245016931.tar.gz
Cleared compile errors under Visual Studio .Net compilers
Diffstat (limited to 'ida.cpp')
-rw-r--r--ida.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ida.cpp b/ida.cpp
index 6bcf3ccb..363fe98a 100644
--- a/ida.cpp
+++ b/ida.cpp
@@ -402,7 +402,7 @@ size_t PaddingRemover::Put2(const byte *begin, size_t length, int messageEnd, bo
#else
typedef std::reverse_iterator<const byte *> RevIt;
#endif
- const byte *x = std::find_if(RevIt(end), RevIt(begin), bind2nd(std::not_equal_to<byte>(), byte(0))).base();
+ const byte *x = std::find_if(RevIt(end), RevIt(begin), std::bind2nd(std::not_equal_to<byte>(), byte(0))).base();
if (x != begin && *(x-1) == 1)
{
AttachedTransformation()->Put(begin, x-begin-1);