Revision: 4513 Author: [email protected] Date: Tue Apr 27 06:02:23 2010 Log: Fix copy paste: IsUint32() checks if value is unsigned, not signed.
Review URL: http://codereview.chromium.org/1762008 http://code.google.com/p/v8/source/detail?r=4513 Modified: /branches/bleeding_edge/include/v8.h ======================================= --- /branches/bleeding_edge/include/v8.h Wed Apr 14 08:57:27 2010 +++ /branches/bleeding_edge/include/v8.h Tue Apr 27 06:02:23 2010 @@ -767,7 +767,7 @@ bool IsInt32() const; /** - * Returns true if this value is a 32-bit signed integer. + * Returns true if this value is a 32-bit unsigned integer. */ bool IsUint32() const; -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
