Reviewers: Erik Corry, Mads Ager, Søren Gjesse,

Description:
Add friend declaration.

StackFrameIterator::Reset() access private method
StandardFrame::ComputePCAddress.
There is a friend relationship between superclasses, but picky C++ compilers
require the friend relationship to be explicit.

Please review this at http://codereview.chromium.org/2024008/show

SVN Base: http://v8.googlecode.com/svn/trunk/

Affected files:
  M     src/frames.h


Index: src/frames.h
===================================================================
--- src/frames.h        (revision 4588)
+++ src/frames.h        (working copy)
@@ -357,6 +357,7 @@

  private:
   friend class StackFrame;
+  friend class StackFrameIterator;
 };




--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to