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 <mkrebs@chromium.org>


git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@878 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
mark@chromium.org 2011-10-22 16:57:10 +00:00
parent 11582abc27
commit 64b18d123a

View file

@ -49,7 +49,7 @@ class CPPLanguage: public Language {
}
};
const CPPLanguage CPPLanguageSingleton;
CPPLanguage CPPLanguageSingleton;
// Java language-specific operations.
class JavaLanguage: public Language {