diff options
author | Dan Stoza <stoza@google.com> | 2014-11-18 10:24:03 -0800 |
---|---|---|
committer | Dan Stoza <stoza@google.com> | 2015-03-18 15:57:27 -0700 |
commit | 3be1c6b60a188dc10025e2ce156c11fac050625d (patch) | |
tree | eab1b3c19861ba39808733d68a415ac3bf923949 /include/gui/Sensor.h | |
parent | b6b81d6acd6949a731308666ac211864f824ab50 (diff) | |
download | frameworks_native-3be1c6b60a188dc10025e2ce156c11fac050625d.zip frameworks_native-3be1c6b60a188dc10025e2ce156c11fac050625d.tar.gz frameworks_native-3be1c6b60a188dc10025e2ce156c11fac050625d.tar.bz2 |
libgui: Enable -Weverything and -Werror
Enables -Weverything and -Werror, with just a few exceptions for
warnings we can't (or shouldn't need to) work around.
Cherry pick of I034abec27bf4020d84af60d7acc1939c59986dd6 plus a
couple of minor changes to CpuConsumer.cpp to make it work with a
prior change:
Uncomment CC_LOGV on line 46
Change C-style cast to static_cast on line 71
Change-Id: Iaec610477ea0122317b0578fb74caf2383d4cf08
Diffstat (limited to 'include/gui/Sensor.h')
-rw-r--r-- | include/gui/Sensor.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/gui/Sensor.h b/include/gui/Sensor.h index 59b4d4d..27a215e 100644 --- a/include/gui/Sensor.h +++ b/include/gui/Sensor.h @@ -67,12 +67,12 @@ public: int32_t getMinDelay() const; nsecs_t getMinDelayNs() const; int32_t getVersion() const; - int32_t getFifoReservedEventCount() const; - int32_t getFifoMaxEventCount() const; + uint32_t getFifoReservedEventCount() const; + uint32_t getFifoMaxEventCount() const; const String8& getStringType() const; const String8& getRequiredPermission() const; int32_t getMaxDelay() const; - int32_t getFlags() const; + uint32_t getFlags() const; bool isWakeUpSensor() const; int32_t getReportingMode() const; @@ -93,8 +93,8 @@ private: float mPower; int32_t mMinDelay; int32_t mVersion; - int32_t mFifoReservedEventCount; - int32_t mFifoMaxEventCount; + uint32_t mFifoReservedEventCount; + uint32_t mFifoMaxEventCount; String8 mStringType; String8 mRequiredPermission; int32_t mMaxDelay; |