Skip to content

Commit bb0bccb

Browse files
Jeff BrownAndroid (Google) Code Review
authored andcommitted
Merge "Make LTE_FLOAT a strict weak order. Bug: 5327776"
2 parents 4920fde + 13ede62 commit bb0bccb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/hwui/utils/Compare.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
*/
2929
#define LTE_FLOAT(a) \
3030
if (a < rhs.a) return true; \
31-
if (ALMOST_EQUAL(a, rhs.a))
31+
if (a == rhs.a)
3232

3333
/**
3434
* Compare integers.

0 commit comments

Comments
 (0)