diff options
author | Andreas Gampe <agampe@google.com> | 2014-11-10 15:23:43 -0800 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2014-11-10 15:58:04 -0800 |
commit | 1e19674107e1aa2224c2b8c7d12bfa057efe80ea (patch) | |
tree | 512f1a8a715497c2cde26d6ca070d923fd9c3a45 /libs/hwui/PathCache.cpp | |
parent | 487ae9b8dc3e08c1a830d519a801a07cd59c8f2b (diff) | |
download | frameworks_base-1e19674107e1aa2224c2b8c7d12bfa057efe80ea.zip frameworks_base-1e19674107e1aa2224c2b8c7d12bfa057efe80ea.tar.gz frameworks_base-1e19674107e1aa2224c2b8c7d12bfa057efe80ea.tar.bz2 |
Frameworks/base: Wall Werror in libs/hwui
Turn on -Wall -Werror in libs/hwui. Fix errors.
Change-Id: I74962d08c889712dacbd0d86d6760fc10802b6bd
Diffstat (limited to 'libs/hwui/PathCache.cpp')
-rw-r--r-- | libs/hwui/PathCache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/PathCache.cpp b/libs/hwui/PathCache.cpp index 9ba8854..a3d7019 100644 --- a/libs/hwui/PathCache.cpp +++ b/libs/hwui/PathCache.cpp @@ -212,7 +212,7 @@ void PathCache::removeTexture(PathTexture* texture) { // before attempting our cleanup const sp<Task<SkBitmap*> >& task = texture->task(); if (task != NULL) { - SkBitmap* bitmap = task->getResult(); + task->getResult(); texture->clearTask(); } else { // If there is a pending task, the path was not added |