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

Commit 3a5616d0 authored by Austin Borger's avatar Austin Borger Committed by Android (Google) Code Review
Browse files

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

Merge "[AIDL] Add L to TagBoundaryId::VENDOR to indicate that it is a long integer literal." into tm-dev
parents 791fe054 1b7ebd29
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,
}