View | Details | Raw Unified | Return to bug 534
Collapse All | Expand All

(-)a/src/core/ptr.h (-2 / +2 lines)
 Lines 106-112    Link Here 
106
  T *operator -> () const;
106
  T *operator -> () const;
107
  T *operator -> ();
107
  T *operator -> ();
108
  const T &operator * () const;
108
  const T &operator * () const;
109
  const T &operator * ();
109
  T &operator * ();
110
  // allow if (!sp)
110
  // allow if (!sp)
111
  bool operator! ();
111
  bool operator! ();
112
  // allow if (sp)
112
  // allow if (sp)
 Lines 486-492    Link Here 
486
}
486
}
487
487
488
template <typename T>
488
template <typename T>
489
const T &
489
T &
490
Ptr<T>::operator * ()
490
Ptr<T>::operator * ()
491
{
491
{
492
  return *m_ptr;
492
  return *m_ptr;

Return to bug 534