Revision: 10026 Author: [email protected] Date: Fri Nov 18 01:10:19 2011 Log: Fixing compiler warning on gcc 4.6.1.
BUG=v8:1831 Review URL: http://codereview.chromium.org/8597006 http://code.google.com/p/v8/source/detail?r=10026 Modified: /branches/bleeding_edge/src/objects-inl.h ======================================= --- /branches/bleeding_edge/src/objects-inl.h Thu Nov 17 09:05:12 2011 +++ /branches/bleeding_edge/src/objects-inl.h Fri Nov 18 01:10:19 2011 @@ -2298,7 +2298,7 @@ void ExternalString::clear_data_cache() { - WRITE_INTPTR_FIELD(this, kResourceDataOffset, NULL); + WRITE_INTPTR_FIELD(this, kResourceDataOffset, 0); } -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
