From 35199ba31fe119b39fa435026fe41dac168166cb Mon Sep 17 00:00:00 2001 From: Adam Roben Date: Tue, 14 May 2013 14:41:50 -0400 Subject: [PATCH] MSVC doesn't allow `override` on destructors --- brightray/browser/inspectable_web_contents_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brightray/browser/inspectable_web_contents_impl.h b/brightray/browser/inspectable_web_contents_impl.h index 8efde3c25d9b..95293e062bd8 100644 --- a/brightray/browser/inspectable_web_contents_impl.h +++ b/brightray/browser/inspectable_web_contents_impl.h @@ -32,7 +32,7 @@ public: static void RegisterPrefs(PrefRegistrySimple*); InspectableWebContentsImpl(content::WebContents*); - virtual ~InspectableWebContentsImpl() OVERRIDE; + virtual ~InspectableWebContentsImpl(); virtual InspectableWebContentsView* GetView() const OVERRIDE; virtual content::WebContents* GetWebContents() const OVERRIDE;