add missing overrides for new [] and delete []
parent
9a4304c42d
commit
e1893c22ff
10
dll.cpp
10
dll.cpp
|
|
@ -111,4 +111,14 @@ void CRYPTOPP_CDECL operator delete (void * p)
|
||||||
s_pDelete(p);
|
s_pDelete(p);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void * CRYPTOPP_CDECL operator new [] (size_t size)
|
||||||
|
{
|
||||||
|
return operator new (size);
|
||||||
|
}
|
||||||
|
|
||||||
|
void CRYPTOPP_CDECL operator delete [] (void * p)
|
||||||
|
{
|
||||||
|
operator delete (p);
|
||||||
|
}
|
||||||
|
|
||||||
#endif // #ifdef CRYPTOPP_EXPORTS
|
#endif // #ifdef CRYPTOPP_EXPORTS
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue