| Index: core/fpdfapi/fpdf_parser/cpdf_array.h
|
| diff --git a/core/fpdfapi/fpdf_parser/cpdf_array.h b/core/fpdfapi/fpdf_parser/cpdf_array.h
|
| index 2d4909d50ecd96ea91781e9c3c9a2c3c511c0e84..44bee40304a8ebfeb0f00bfe6b6bc1ba4000bb18 100644
|
| --- a/core/fpdfapi/fpdf_parser/cpdf_array.h
|
| +++ b/core/fpdfapi/fpdf_parser/cpdf_array.h
|
| @@ -21,6 +21,7 @@ class CPDF_Array : public CPDF_Object {
|
| using const_iterator = std::vector<CPDF_Object*>::const_iterator;
|
|
|
| CPDF_Array();
|
| + ~CPDF_Array() override;
|
|
|
| // CPDF_Object.
|
| Type GetType() const override;
|
| @@ -60,8 +61,6 @@ class CPDF_Array : public CPDF_Object {
|
| const_iterator end() const { return m_Objects.end(); }
|
|
|
| protected:
|
| - ~CPDF_Array() override;
|
| -
|
| CPDF_Object* CloneNonCyclic(
|
| bool bDirect,
|
| std::set<const CPDF_Object*>* pVisited) const override;
|
|
|