diff options
author | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-01-16 15:25:55 +0000 |
---|---|---|
committer | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-01-16 15:25:55 +0000 |
commit | 64287c5ef759092bf95b015f51a8bb24d48191c5 (patch) | |
tree | 02fd30e68f09097780d3b2ade27b50f9d3456f5e /include/gpu | |
parent | 0ac6af49975c54c2debf41e9200af416ecd2d973 (diff) |
Fix missing "class" in friend decls in GrEffect.h
git-svn-id: http://skia.googlecode.com/svn/trunk@7223 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/gpu')
-rw-r--r-- | include/gpu/GrEffect.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/gpu/GrEffect.h b/include/gpu/GrEffect.h index 431159ca89..99a26eed96 100644 --- a/include/gpu/GrEffect.h +++ b/include/gpu/GrEffect.h @@ -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; |