Chromium Code Reviews| Index: include/v8.h |
| diff --git a/include/v8.h b/include/v8.h |
| index ccb2a185a2eda1b7014175e63cf860b41159c353..2d21355d6008851421256b534211c7cb543ea1df 100644 |
| --- a/include/v8.h |
| +++ b/include/v8.h |
| @@ -509,7 +509,7 @@ template <class T> class Persistent // NOLINT |
| : val_(New(isolate, *that)) { } |
| template <class S> V8_INLINE(Persistent(Isolate* isolate, |
| - Persistent<S>& that)) // NOLINT |
| + const Persistent<S>& that)) // NOLINT |
| : val_(New(isolate, *that)) { } |
| #else |