Remove spurious 'const' that upsets some versions of gcc.

Review URL: http://codereview.chromium.org/115770

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2056 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
erik.corry@gmail.com 2009-05-26 10:46:40 +00:00
parent a196a9c0d9
commit d1915ea45c

View File

@ -39,7 +39,7 @@ namespace v8 {
namespace internal {
#ifdef DEBUG
static const char TransitionMarkFromState(IC::State state) {
static char TransitionMarkFromState(IC::State state) {
switch (state) {
case UNINITIALIZED: return '0';
case PREMONOMORPHIC: return 'P';