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

Commit 62b824a1 authored by Kris Alder's avatar Kris Alder Committed by Automerger Merge Worker
Browse files

Merge "AUtils.h: Removed unused variable macro usage" am: 190607bd am: 2d1ebfdc am: 4a19461a

Change-Id: I5d22264d256cc69b4df105c473001d6b791ceb81
parents 8209f7bf 4a19461a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -63,7 +63,7 @@ inline static const T &max(const T &a, const T &b) {

template<class T>
void ENSURE_UNSIGNED_TYPE() {
    T TYPE_MUST_BE_UNSIGNED[(T)-1 < 0 ? -1 : 0] __unused;
    T TYPE_MUST_BE_UNSIGNED[(T)-1 < 0 ? -1 : 0] __attribute__((unused));
}

// needle is in range [hayStart, hayStart + haySize)