Skip to content

Commit a82f448

Browse files
Jeff BrownAndroid (Google) Code Review
authored andcommitted
Merge "Make LTE_FLOAT a strict weak order. (DO NOT MERGE) Bug: 5327776" into ics-factoryrom
2 parents 41d6bfb + 3fccb86 commit a82f448

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)