Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2c5692bd authored by Brian Duddie's avatar Brian Duddie
Browse files

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
parent bb319326
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -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">