diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-06-16 16:00:24 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-06-16 16:00:24 -0700 |
commit | 6c949d13ad2543e28cf174ecf457b5adcdf213bf (patch) | |
tree | e3d442fe5a39352c5edf9cb4fb677f6a23d0db4b /xfa/src/fgas/include/fx_mem.h | |
parent | 3403db90496fc87269d7bb1d033347ee19fc0c38 (diff) | |
download | pdfium-6c949d13ad2543e28cf174ecf457b5adcdf213bf.tar.xz |
XFA: Write new as "new" rather than using several macros.
Really?
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1183193004.
Diffstat (limited to 'xfa/src/fgas/include/fx_mem.h')
-rw-r--r-- | xfa/src/fgas/include/fx_mem.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/xfa/src/fgas/include/fx_mem.h b/xfa/src/fgas/include/fx_mem.h index 265c582884..c8875e185d 100644 --- a/xfa/src/fgas/include/fx_mem.h +++ b/xfa/src/fgas/include/fx_mem.h @@ -51,8 +51,6 @@ public: }
void operator delete(void *p, void *place) {}
};
-#define FXTARGET_New new
#define FXTARGET_NewWith(__allocator__) new(__allocator__)
-#define FXTARGET_Delete delete
#define FXTARGET_DeleteWith(__class__, __allocator__, pointer) {(pointer)->~__class__(); (pointer)->operator delete((pointer), (__allocator__));}
#endif
|