diff options
author | weili <weili@chromium.org> | 2016-07-24 08:26:49 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-07-24 08:26:50 -0700 |
commit | 0024a22b4a793630a1a8e8d85c4525c7b82a3ed7 (patch) | |
tree | 09cc3dc3ff26e231a82787c602834cdf2da26fb0 /core/fxcrt | |
parent | 9f515bcccb40e8ae251bbe8afc1ef6c4db1f05a8 (diff) | |
download | pdfium-0024a22b4a793630a1a8e8d85c4525c7b82a3ed7.tar.xz |
Remove CFX_Deletable
Change the last use of CFX_Deletable to its actual type and remove
the use of CFX_Deletable.
Review-Url: https://codereview.chromium.org/2178613002
Diffstat (limited to 'core/fxcrt')
-rw-r--r-- | core/fxcrt/include/fx_memory.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/core/fxcrt/include/fx_memory.h b/core/fxcrt/include/fx_memory.h index 53e6b9d1eb..a3eba2fd79 100644 --- a/core/fxcrt/include/fx_memory.h +++ b/core/fxcrt/include/fx_memory.h @@ -107,11 +107,6 @@ std::unique_ptr<T> WrapUnique(T* ptr) { return std::unique_ptr<T>(ptr); } -class CFX_Deletable { - public: - virtual ~CFX_Deletable() {} -}; - #endif // __cplusplus #endif // CORE_FXCRT_INCLUDE_FX_MEMORY_H_ |