diff options
author | Mark Salyzyn <salyzyn@google.com> | 2014-03-13 15:20:44 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-03-13 15:20:45 +0000 |
commit | cdbf28b3f7f5327f4cb0eb95b8326bf4c24c87ba (patch) | |
tree | aa1c6a8230541a45e941eb4c459b19b8487e08d3 /services/sensorservice/RotationVectorSensor.cpp | |
parent | 06ed9491418ce84e4272bf4201545fa6cfe3932e (diff) | |
parent | 92dc3fc52cf097bd105460cf377779bdcf146d62 (diff) | |
download | frameworks_native-cdbf28b3f7f5327f4cb0eb95b8326bf4c24c87ba.zip frameworks_native-cdbf28b3f7f5327f4cb0eb95b8326bf4c24c87ba.tar.gz frameworks_native-cdbf28b3f7f5327f4cb0eb95b8326bf4c24c87ba.tar.bz2 |
Merge "native frameworks: 64-bit compile issues"
Diffstat (limited to 'services/sensorservice/RotationVectorSensor.cpp')
-rw-r--r-- | services/sensorservice/RotationVectorSensor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/sensorservice/RotationVectorSensor.cpp b/services/sensorservice/RotationVectorSensor.cpp index a2157b4..cb305eb 100644 --- a/services/sensorservice/RotationVectorSensor.cpp +++ b/services/sensorservice/RotationVectorSensor.cpp @@ -56,7 +56,7 @@ status_t RotationVectorSensor::activate(void* ident, bool enabled) { return mSensorFusion.activate(ident, enabled); } -status_t RotationVectorSensor::setDelay(void* ident, int handle, int64_t ns) { +status_t RotationVectorSensor::setDelay(void* ident, int /*handle*/, int64_t ns) { return mSensorFusion.setDelay(ident, ns); } @@ -105,7 +105,7 @@ status_t GyroDriftSensor::activate(void* ident, bool enabled) { return mSensorFusion.activate(ident, enabled); } -status_t GyroDriftSensor::setDelay(void* ident, int handle, int64_t ns) { +status_t GyroDriftSensor::setDelay(void* ident, int /*handle*/, int64_t ns) { return mSensorFusion.setDelay(ident, ns); } |