Chromium Code Reviews| Index: src/handles.h |
| diff --git a/src/handles.h b/src/handles.h |
| index 577e83a9041e2157af393cf4179ee66b9c1ff36e..eb57f0e26089383c9d7fe9f57a8cba5f41a111e2 100644 |
| --- a/src/handles.h |
| +++ b/src/handles.h |
| @@ -53,7 +53,8 @@ class MaybeHandle { |
| } |
| // Convert to a Handle with a type that can be upcasted to. |
| - template <class S> INLINE(bool ToHandle(Handle<S>* out)) { |
| + template <class S> |
| + V8_INLINE bool ToHandle(Handle<S>* out) const { |
| if (location_ == NULL) { |
| *out = Handle<T>::null(); |
| return false; |