Chromium Code Reviews| Index: src/handles.h |
| =================================================================== |
| --- src/handles.h (revision 5190) |
| +++ src/handles.h (working copy) |
| @@ -82,7 +82,7 @@ |
| } |
| static Handle<T> null() { return Handle<T>(); } |
| - bool is_null() { return location_ == NULL; } |
| + bool is_null() const { return location_ == NULL; } |
| // Closes the given scope, but lets this handle escape. See |
| // implementation in api.h. |