Merge pull request #110 from Crayon2000/cast_size_t
Fixes a compiler error with C++Builder XE6pull/107/head
commit
64944773cd
|
|
@ -76,7 +76,7 @@ public:
|
||||||
{
|
{
|
||||||
static HashIdentifier Lookup()
|
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);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue