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

Commit 0403b32f authored by Austin Borger's avatar Austin Borger Committed by Automerger Merge Worker
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 am: 3a5616d0

Original change: https://googleplex-android-review.googlesource.com/c/platform/hardware/interfaces/+/17259267

Change-Id: I38e0acc307f5a3525a00721b3827aed71491f5b9
parents bd6da34a 3a5616d0
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,
}