Searched defs:C2Int (Results 1 - 1 of 1) sorted by relevance

/external/libcxx/test/support/
H A Dis_transparent.h71 struct C2Int { // comparable to int struct
72 C2Int() : i_(0) {} function in struct:C2Int
73 C2Int(int i): i_(i) {} function in struct:C2Int
79 bool operator <(int rhs, const C2Int& lhs) { return rhs < lhs.get(); }
80 bool operator <(const C2Int& rhs, const C2Int& lhs) { return rhs.get() < lhs.get(); }
81 bool operator <(const C2Int& rhs, int lhs) { return rhs.get() < lhs; }

Completed in 267 milliseconds