summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-04-17 16:03:41 -0700
committerTom Sepez <tsepez@chromium.org>2015-04-17 16:03:41 -0700
commit0fff5ef23382f8c13d079dae41b1664999d9c2a7 (patch)
treee1540ab2c1d54fc50bdc618a4d42684f8fe2d17f
parent4cb07c9c9cd5761ce3179d3d7254c1cf0efeafa5 (diff)
downloadpdfium-0fff5ef23382f8c13d079dae41b1664999d9c2a7.tar.xz
Remove unused FX_NEW definition.
R=thestig@chromium.org Review URL: https://codereview.chromium.org/1096853002
-rw-r--r--core/include/fxcrt/fx_memory.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/include/fxcrt/fx_memory.h b/core/include/fxcrt/fx_memory.h
index 4e7c501318..4116e17450 100644
--- a/core/include/fxcrt/fx_memory.h
+++ b/core/include/fxcrt/fx_memory.h
@@ -24,7 +24,6 @@ void FXMEM_DefaultFree(void* pointer, int flags);
#ifdef __cplusplus
}
-#define FX_NEW new
#define FX_NEW_VECTOR(Pointer, Class, Count) (Pointer = new Class[Count])
#define FX_DELETE_VECTOR(Pointer, Class, Count) delete[] Pointer