From 64b18d123a496d3e080cdc9f2fa92337db84f581 Mon Sep 17 00:00:00 2001 From: "mark@chromium.org" Date: Sat, 22 Oct 2011 16:57:10 +0000 Subject: Upstream fix for compiling of breakpad with gcc-4.6. Remove an unnecessary "const" that causes an error with the newer gcc. BUG=chromium-os:14973 TEST=Built CrOS's google-breakpad Patch by Michael Krebs git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@878 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/common/language.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common/language.cc') diff --git a/src/common/language.cc b/src/common/language.cc index 4e90d916..c2fd81f6 100644 --- a/src/common/language.cc +++ b/src/common/language.cc @@ -49,7 +49,7 @@ class CPPLanguage: public Language { } }; -const CPPLanguage CPPLanguageSingleton; +CPPLanguage CPPLanguageSingleton; // Java language-specific operations. class JavaLanguage: public Language { -- cgit v1.2.1