Index: include/v8.h |
diff --git a/include/v8.h b/include/v8.h |
index 9302f0f6082c7f897a63ee0443d2ce734e0daca5..f6e236114e33edca721fe3cb1a37fd216c5af0fb 100644 |
--- a/include/v8.h |
+++ b/include/v8.h |
@@ -490,10 +490,10 @@ template <class T> class Persistent // NOLINT |
public: |
#ifndef V8_USE_UNSAFE_HANDLES |
V8_INLINE(Persistent()) : val_(0) { } |
- V8_INLINE(~Persistent()) { |
- // TODO(dcarney): add this back before cutover. |
- // Dispose(); |
- } |
+ // TODO(dcarney): add this back before cutover. |
+// V8_INLINE(~Persistent()) { |
+// Dispose(); |
+// } |
V8_INLINE(bool IsEmpty() const) { return val_ == 0; } |
// TODO(dcarney): remove somehow before cutover |
// The handle should either be 0, or a pointer to a live cell. |