| //===----------------------------------------------------------------------===// |
| // The LLVM Compiler Infrastructure |
| // This file is dual licensed under the MIT and the University of Illinois Open |
| // Source Licenses. See LICENSE.TXT for details. |
| //===----------------------------------------------------------------------===// |
| explicit A(int data = -1) : data_(data) {} |
| operator == (const A& x, const A& y) |
| return x.data_ == y.data_; |
| operator < (const A& x, const A& y) |
| return x.data_ < y.data_; |
| using namespace std::rel_ops; |