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

Commit dae73fe7 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "BufferPool: Avoid implementation-defined behavior" into rvc-dev am:...

Merge "BufferPool: Avoid implementation-defined behavior" into rvc-dev am: a41b0d01 am: 8da7171f am: 3797e338

Change-Id: Id853996ddb8793290b1be8564ef284cb1d167968
parents 6d1204d0 3797e338
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -139,7 +139,7 @@ bool contains(std::map<T, std::set<U>> *mapOfSet, T key, U value) {
}

#ifdef __ANDROID_VNDK__
static constexpr uint32_t kSeqIdVndkBit = 1 << 31;
static constexpr uint32_t kSeqIdVndkBit = 1U << 31;
#else
static constexpr uint32_t kSeqIdVndkBit = 0;
#endif