summaryrefslogtreecommitdiff
path: root/xfa/src/fgas/src/crt/fx_memory.h
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/src/fgas/src/crt/fx_memory.h')
-rw-r--r--xfa/src/fgas/src/crt/fx_memory.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/src/fgas/src/crt/fx_memory.h b/xfa/src/fgas/src/crt/fx_memory.h
index 9ce8d2f11c..eabfec559a 100644
--- a/xfa/src/fgas/src/crt/fx_memory.h
+++ b/xfa/src/fgas/src/crt/fx_memory.h
@@ -17,7 +17,7 @@ public:
~CFX_DefStore() {}
virtual void Release()
{
- FXTARGET_Delete this;
+ delete this;
}
virtual void* Alloc(size_t size)
{
@@ -63,7 +63,7 @@ public:
~CFX_StaticStore();
virtual void Release()
{
- FXTARGET_Delete this;
+ delete this;
}
virtual void* Alloc(size_t size);
virtual void Free(void* pBlock) {}
@@ -115,7 +115,7 @@ public:
virtual ~CFX_FixedStore();
virtual void Release()
{
- FXTARGET_Delete this;
+ delete this;
}
virtual void* Alloc(size_t size);
virtual void Free(void* pBlock);
@@ -174,7 +174,7 @@ public:
virtual ~CFX_DynamicStore();
virtual void Release()
{
- FXTARGET_Delete this;
+ delete this;
}
virtual void* Alloc(size_t size);
virtual void Free(void* pBlock);