From a0f786f02203d0208d6e3be85288960310e4e9be Mon Sep 17 00:00:00 2001 From: "dcarney@chromium.org" Date: Fri, 7 Jun 2013 10:46:51 +0000 Subject: [PATCH] Make ReturnValue a friend of Persistent, so it can use operator*. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit BUG= R=dcarney@chromium.org, svenpanne@chromium.org Review URL: https://codereview.chromium.org/15848010 Patch from Marja Hölttä . git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@14999 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- include/v8.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/v8.h b/include/v8.h index f70af47..04e608b 100644 --- a/include/v8.h +++ b/include/v8.h @@ -796,6 +796,7 @@ template class Persistent // NOLINT private: template friend class Handle; template friend class Local; + template friend class ReturnValue; friend class ImplementationUtilities; friend class ObjectTemplate; friend class Context; -- 2.7.4