Fix another obvious typo to make MutableHandle<Value> a friend of ValueOperations<MutableHandle<Value>> and MutableValueOperations<MutableHandle<Value>>. Followup to bug 773049, r=sparky

--HG--
extra : rebase_source : af69f1a76d4bd73fc9c87f778e4bd509242c78ea
This commit is contained in:
Jeff Walden 2012-07-13 12:04:33 -07:00
parent d24cf25018
commit 317033d088

View File

@ -920,12 +920,12 @@ class HandleBase<Value> : public ValueOperations<Handle<Value> >
template <>
class MutableHandleBase<Value> : public MutableValueOperations<MutableHandle<Value> >
{
friend class ValueOperations<Handle<Value> >;
friend class ValueOperations<MutableHandle<Value> >;
const Value * extract() const {
return static_cast<const MutableHandle<Value>*>(this)->address();
}
friend class MutableValueOperations<Handle<Value> >;
friend class MutableValueOperations<MutableHandle<Value> >;
Value * extractMutable() {
return static_cast<MutableHandle<Value>*>(this)->address();
}