aboutsummaryrefslogtreecommitdiff
path: root/src/common/language.cc
diff options
context:
space:
mode:
authormark@chromium.org <mark@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2011-10-22 16:57:10 +0000
committermark@chromium.org <mark@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2011-10-22 16:57:10 +0000
commit64b18d123a496d3e080cdc9f2fa92337db84f581 (patch)
treecf05e97916fd308645fc967614261b1810f7ce9e /src/common/language.cc
parentFix some shadow variables, including one in file_id.cc that causes all files ... (diff)
downloadbreakpad-64b18d123a496d3e080cdc9f2fa92337db84f581.tar.xz
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
Diffstat (limited to 'src/common/language.cc')
-rw-r--r--src/common/language.cc2
1 files changed, 1 insertions, 1 deletions
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 {