diff options
author | 2014-11-21 09:49:08 -0800 | |
---|---|---|
committer | 2014-11-21 10:39:21 -0800 | |
commit | 42ddc18d108f789705ad4eb697ce9599ad322507 (patch) | |
tree | 53ed2c03a53112f6bfd515a6d03b02dfed0cc9e9 /libs/hwui/Program.h | |
parent | f926d71b8ef2790da067550144860705c1a61fe5 (diff) |
Frameworks/base: Unused parameters in hwui
Remove Clang cutout for unused parameters. Fix warnings.
Remove Clang cutout for deprecated Skia function usage. Has been
fixed in the L push.
Change-Id: I7ea073ff67127cc1e14e798b655e2c50615fe8e7
Diffstat (limited to 'libs/hwui/Program.h')
-rw-r--r-- | libs/hwui/Program.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/hwui/Program.h b/libs/hwui/Program.h index 56773f44f9b5..7ea537674443 100644 --- a/libs/hwui/Program.h +++ b/libs/hwui/Program.h @@ -285,6 +285,8 @@ struct ProgramDescription { programid k = key(); PROGRAM_LOGD("%s (key = 0x%.8x%.8x)", message, uint32_t(k >> 32), uint32_t(k & 0xffffffff)); +#else + (void)message; #endif } |