Chromium Code Reviews| Index: include/core/SkAnnotation.h |
| diff --git a/include/core/SkAnnotation.h b/include/core/SkAnnotation.h |
| index 18ee1cd1a65993eaf2cdf5f203bfd7fe455b7a6b..d699ea156a3b67486381b7fc105703e05a739211 100644 |
| --- a/include/core/SkAnnotation.h |
| +++ b/include/core/SkAnnotation.h |
| @@ -21,6 +21,8 @@ struct SkPoint; |
| * Use helper functions at the bottom of this file for now. |
| */ |
| class SkAnnotation : public SkFlattenable { |
| + typedef SkFlattenable INHERITED; |
|
mtklein
2013/09/24 22:52:18
Can you come up with a small test case that shows
sugoi1
2013/09/25 21:15:27
I got this error while writing some code last week
|
| + |
| public: |
| enum Flags { |
| // If set, the associated drawing primitive should not be drawn |
| @@ -52,8 +54,6 @@ private: |
| void writeToStream(SkWStream*) const; |
| void readFromStream(SkStream*); |
| - |
| - typedef SkFlattenable INHERITED; |
| }; |
| /** |