diff options
author | 2023-05-18 15:04:32 -0700 | |
---|---|---|
committer | 2023-05-18 15:04:32 -0700 | |
commit | 2c5692bd42154e938474b6f9638d3edb1c6b4c91 (patch) | |
tree | 9b9fc3b60e51d2cfd95eaabe2f93c7d929878e9e | |
parent | bb319326a6a8235e0227d404e428f9fcd23cfaec (diff) |
Fix NDK documentation for ASensorEvent
Correctly associate comments with the applicable fields by moving the
comment to before the field declaration.
Fixes: 283307966
Test: presubmit
Change-Id: Ibb87216f5d0deb458248df8989fdfeed79edf0e4
-rw-r--r-- | include/android/sensor.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/include/android/sensor.h b/include/android/sensor.h index 085fc270c1..16c5dde60f 100644 --- a/include/android/sensor.h +++ b/include/android/sensor.h @@ -611,10 +611,14 @@ typedef struct AHeadingEvent { * sensors_event_t */ typedef struct ASensorEvent { - int32_t version; /* sizeof(struct ASensorEvent) */ - int32_t sensor; /** The sensor that generates this event */ - int32_t type; /** Sensor type for the event, such as {@link ASENSOR_TYPE_ACCELEROMETER} */ - int32_t reserved0; /** do not use */ + /* sizeof(struct ASensorEvent) */ + int32_t version; + /** The sensor that generates this event */ + int32_t sensor; + /** Sensor type for the event, such as {@link ASENSOR_TYPE_ACCELEROMETER} */ + int32_t type; + /** do not use */ + int32_t reserved0; /** * The time in nanoseconds at which the event happened, and its behavior * is identical to <a href="/reference/android/hardware/SensorEvent#timestamp"> |