diff options
| author | 2014-01-02 16:46:18 -0800 | |
|---|---|---|
| committer | 2014-01-02 16:52:32 -0800 | |
| commit | 564acf7c9bff822f608cda0d5df0a64a9f9aaefd (patch) | |
| tree | 93a3203fc99098dedd4df5660c96d6800c97ae93 /libs/hwui/Patch.h | |
| parent | e459367a3a49cbe94dfe38c50369431614dddc9c (diff) | |
Fix Clang warnings/errors
Fix several build warnings (struct != class, int != size_t) and errors
(variable leng non-POD arrays).
Change-Id: I70b4e784365514303d8954bfcb1f39d7c22c1321
Diffstat (limited to 'libs/hwui/Patch.h')
| -rw-r--r-- | libs/hwui/Patch.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/hwui/Patch.h b/libs/hwui/Patch.h index 763a78565dec..489064b07cca 100644 --- a/libs/hwui/Patch.h +++ b/libs/hwui/Patch.h @@ -36,7 +36,8 @@ namespace uirenderer { // 9-patch structures /////////////////////////////////////////////////////////////////////////////// -struct Patch { +class Patch { +public: Patch(); ~Patch(); |