diff options
Diffstat (limited to 'core/fpdfdoc/pdf_vt.h')
-rw-r--r-- | core/fpdfdoc/pdf_vt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fpdfdoc/pdf_vt.h b/core/fpdfdoc/pdf_vt.h index 9026eeee9e..3f06f7d6d6 100644 --- a/core/fpdfdoc/pdf_vt.h +++ b/core/fpdfdoc/pdf_vt.h @@ -28,7 +28,7 @@ class CPVT_ArrayTemplate : public CFX_ArrayTemplate<TYPE> { if (nIndex >= 0 && nIndex < CFX_ArrayTemplate<TYPE>::GetSize()) { return CFX_ArrayTemplate<TYPE>::GetAt(nIndex); } - return NULL; + return nullptr; } void RemoveAt(int nIndex) { if (nIndex >= 0 && nIndex < CFX_ArrayTemplate<TYPE>::GetSize()) { |