diff options
author | Andreas Gampe <agampe@google.com> | 2014-11-07 16:49:48 -0800 |
---|---|---|
committer | Dan Stoza <stoza@google.com> | 2014-11-08 22:18:47 +0000 |
commit | bfd633e131585d8e924b6a77c66284ec7e5dcc72 (patch) | |
tree | d422595b156e0a59eda10c3290643c00331e8a22 /include/gui | |
parent | a26143546e4665cc3b07d6527b63a2e4bb04fb9f (diff) | |
download | frameworks_native-bfd633e131585d8e924b6a77c66284ec7e5dcc72.zip frameworks_native-bfd633e131585d8e924b6a77c66284ec7e5dcc72.tar.gz frameworks_native-bfd633e131585d8e924b6a77c66284ec7e5dcc72.tar.bz2 |
Frameworks/native: Fix unused parameter warning
Pulled in in hardware/, where -Werror is used.
Change-Id: I13fc31d31fe2f623d39c84862b0c95a28813723d
(cherry picked from commit a32900deec6284973100a29f7b399d061f82b3a8)
Diffstat (limited to 'include/gui')
-rw-r--r-- | include/gui/IConsumerListener.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gui/IConsumerListener.h b/include/gui/IConsumerListener.h index 2ef7c4d..3f39799 100644 --- a/include/gui/IConsumerListener.h +++ b/include/gui/IConsumerListener.h @@ -62,7 +62,7 @@ public: // // This is called without any lock held and can be called concurrently // by multiple threads. - virtual void onFrameReplaced(const BufferItem& item) {} /* Asynchronous */ + virtual void onFrameReplaced(const BufferItem& /* item */) {} /* Asynchronous */ // onBuffersReleased is called to notify the buffer consumer that the // BufferQueue has released its references to one or more GraphicBuffers |