Revision: 20608
Author: [email protected]
Date: Wed Apr 9 11:01:58 2014 UTC
Log: Fix build with gcc 4.8 on Linux.
This fixes a build failure on Linux with gcc 4.8, after r20581.
BUG=
[email protected]
Review URL: https://codereview.chromium.org/229683003
http://code.google.com/p/v8/source/detail?r=20608
Modified:
/branches/bleeding_edge/src/objects.h
=======================================
--- /branches/bleeding_edge/src/objects.h Tue Apr 8 20:06:35 2014 UTC
+++ /branches/bleeding_edge/src/objects.h Wed Apr 9 11:01:58 2014 UTC
@@ -4018,7 +4018,7 @@
}
int NextEnumerationIndex() {
- return Smi::cast(FixedArray::get(kNextEnumerationIndexIndex))->value();
+ return Smi::cast(this->get(kNextEnumerationIndexIndex))->value();
}
// Returns a new array for dictionary usage. Might return Failure.
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.