Fix missing "class" in friend decls in GrEffect.h
git-svn-id: http://skia.googlecode.com/svn/trunk@7223 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
parent
0ac6af4997
commit
64287c5ef7
@ -38,7 +38,7 @@ public:
|
||||
void operator delete(void* target);
|
||||
|
||||
private:
|
||||
friend GrEffect; // to construct these
|
||||
friend class GrEffect; // to construct these
|
||||
|
||||
explicit GrEffectRef(GrEffect* effect);
|
||||
|
||||
@ -171,7 +171,7 @@ private:
|
||||
fEffectPtr = NULL;
|
||||
}
|
||||
|
||||
friend GrEffectRef; // to call GrEffectRef destroyed
|
||||
friend class GrEffectRef; // to call GrEffectRef destroyed
|
||||
|
||||
SkSTArray<4, const GrTextureAccess*, true> fTextureAccesses;
|
||||
GrEffectRef* fEffectPtr;
|
||||
|
Loading…
Reference in New Issue
Block a user