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:
bsalomon@google.com 2013-01-16 15:25:55 +00:00
parent 0ac6af4997
commit 64287c5ef7

View File

@ -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;