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

Commit 1b7ebd29 authored by Austin Borger's avatar Austin Borger
Browse files

[AIDL] Add L to TagBoundaryId::VENDOR to indicate that it is a long

integer literal.

Bug: 225049648
Test: Ran m android.hardware.camera.common and observed output files
Change-Id: I098c8d537a9a9809ff3bd594c69b30c69b3b2ed9
parent 97347c1f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -35,5 +35,5 @@ package android.hardware.camera.common;
@Backing(type="long") @VintfStability
enum TagBoundaryId {
  AOSP = 0,
  VENDOR = -2147483648,
  VENDOR = 2147483648,
}
+1 −1
Original line number Diff line number Diff line
@@ -20,5 +20,5 @@ package android.hardware.camera.common;
@Backing(type="long")
enum TagBoundaryId {
    AOSP = 0x0,
    VENDOR = 0x80000000,
    VENDOR = 0x80000000L,
}