Chromium Code Reviews| Index: src/objects-inl.h |
| =================================================================== |
| --- src/objects-inl.h (revision 8463) |
| +++ src/objects-inl.h (working copy) |
| @@ -925,7 +925,7 @@ |
| #define READ_INT_FIELD(p, offset) \ |
| - (*reinterpret_cast<int*>(FIELD_ADDR(p, offset))) |
| + (*reinterpret_cast<const int*>(FIELD_ADDR(p, offset))) |
|
Mads Ager (chromium)
2011/06/29 12:58:42
Unrelated change?
Sven Panne
2011/06/29 13:16:43
Ooops, I'll remove that one...
|
| #define WRITE_INT_FIELD(p, offset, value) \ |
| (*reinterpret_cast<int*>(FIELD_ADDR(p, offset)) = value) |