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

Commit f1f20906 authored by Jiyong Park's avatar Jiyong Park
Browse files

Remove an erroneous semicolon

__INTRODUCED_IN(...) macro expands to attributes, and therefore
shouldn't be after a semicolon.

Bug: N/A
Test: m

Change-Id: Ib56471aa33b107ae66c02945f91cc36e3a708d74
parent 90f29fbd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -712,7 +712,7 @@ enum {
 * - {@link ANDROID_IMAGE_DECODER_BAD_PARAMETER}: The AImageDecoder
 *   is null.
 */
int32_t AImageDecoder_getRepeatCount(AImageDecoder* _Nonnull decoder);
int32_t AImageDecoder_getRepeatCount(AImageDecoder* _Nonnull decoder)
        __INTRODUCED_IN(31);

/**