Index: fpdfsdk/include/javascript/report.h |
diff --git a/fpdfsdk/include/javascript/report.h b/fpdfsdk/include/javascript/report.h |
index a9004fd46a7645b0bb0429188a8af2e044443d23..52be2f36e2b8b110c2d026970b497f899d042183 100644 |
--- a/fpdfsdk/include/javascript/report.h |
+++ b/fpdfsdk/include/javascript/report.h |
@@ -12,7 +12,7 @@ |
class Report : public CJS_EmbedObj { |
public: |
Report(CJS_Object* pJSObject); |
- virtual ~Report(); |
+ ~Report() override; |
public: |
FX_BOOL save(IFXJS_Context* cc, |
@@ -27,8 +27,8 @@ class Report : public CJS_EmbedObj { |
class CJS_Report : public CJS_Object { |
public: |
- CJS_Report(JSFXObject pObject) : CJS_Object(pObject){}; |
- virtual ~CJS_Report(){}; |
+ CJS_Report(JSFXObject pObject) : CJS_Object(pObject) {} |
+ ~CJS_Report() override {} |
public: |
DECLARE_JS_CLASS(CJS_Report); |