Removed assert from debug build
parent
4f57c8f303
commit
f9d2082e97
4
rdrand.h
4
rdrand.h
|
|
@ -97,7 +97,7 @@ public:
|
||||||
{
|
{
|
||||||
// Override to avoid the base class' throw.
|
// Override to avoid the base class' throw.
|
||||||
CRYPTOPP_UNUSED(input); CRYPTOPP_UNUSED(length);
|
CRYPTOPP_UNUSED(input); CRYPTOPP_UNUSED(length);
|
||||||
assert(0); // warn in debug builds
|
// assert(0); // warn in debug builds
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
@ -179,7 +179,7 @@ public:
|
||||||
{
|
{
|
||||||
// Override to avoid the base class' throw.
|
// Override to avoid the base class' throw.
|
||||||
CRYPTOPP_UNUSED(input); CRYPTOPP_UNUSED(length);
|
CRYPTOPP_UNUSED(input); CRYPTOPP_UNUSED(length);
|
||||||
assert(0); // warn in debug builds
|
// assert(0); // warn in debug builds
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue