summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dll.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/dll.cpp b/dll.cpp
index 24edf14..ae67c12 100644
--- a/dll.cpp
+++ b/dll.cpp
@@ -111,4 +111,14 @@ void CRYPTOPP_CDECL operator delete (void * 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