From 2c60ae66cf1c48bad4a6ce913d273821918eb9df Mon Sep 17 00:00:00 2001 From: Botond Ballo Date: Mon, 24 Nov 2014 19:34:19 -0500 Subject: [PATCH] Bug 1073081 - Fix -Wdelete-non-virtual-dtor warnings by adding virtual destructors. r=ehsan --HG-- extra : source : 194c715428c3405ec2eb3d041fed36a9515555e5 --- dom/icc/IccInfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dom/icc/IccInfo.h b/dom/icc/IccInfo.h index 1e51af805a6b..c893a3621a60 100644 --- a/dom/icc/IccInfo.h +++ b/dom/icc/IccInfo.h @@ -59,7 +59,7 @@ public: IsDisplaySpnRequired() const; protected: - ~IccInfo() {} + virtual ~IccInfo() {} protected: nsCOMPtr mWindow;