summaryrefslogtreecommitdiff
path: root/core/include/fxcrt/fx_memory.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-05-15 14:01:28 -0700
committerTom Sepez <tsepez@chromium.org>2015-05-15 14:01:28 -0700
commitb6e5df2eded21ca142adf43b4f78a9027589bfeb (patch)
treee665051b0d327fff3aa55b3ca4169116d79f39bc /core/include/fxcrt/fx_memory.h
parent861a552af4aa7edb24c600e25a7bf388a1cdb364 (diff)
downloadpdfium-b6e5df2eded21ca142adf43b4f78a9027589bfeb.tar.xz
Merge to XFA: Remove FX_NEW_VECTOR() macros.
Original Review URL: https://codereview.chromium.org/1135273004 R=thestig@chromium.org TBR=thestig@chromium.org Review URL: https://codereview.chromium.org/1134003007
Diffstat (limited to 'core/include/fxcrt/fx_memory.h')
-rw-r--r--core/include/fxcrt/fx_memory.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/include/fxcrt/fx_memory.h b/core/include/fxcrt/fx_memory.h
index 4d56736011..e6685ef0d4 100644
--- a/core/include/fxcrt/fx_memory.h
+++ b/core/include/fxcrt/fx_memory.h
@@ -25,8 +25,6 @@ void FXMEM_DefaultFree(void* pointer, int flags);
}
#define FX_NEW new
-#define FX_NEW_VECTOR(Pointer, Class, Count) (Pointer = FX_NEW Class[Count])
-#define FX_DELETE_VECTOR(Pointer, Class, Count) delete[] Pointer
class CFX_DestructObject
{