Merge pull request #110 from Crayon2000/cast_size_t

Fixes a compiler error with C++Builder XE6
pull/107/head
Jeffrey Walton 2016-01-11 23:43:29 -05:00
commit 64944773cd
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ public:
{
static HashIdentifier Lookup()
{
return HashIdentifier(PKCS_DigestDecoration<H>::decoration, PKCS_DigestDecoration<H>::length);
return HashIdentifier(PKCS_DigestDecoration<H>::decoration, (size_t)PKCS_DigestDecoration<H>::length);
}
};
};