brintos

brintos / llvm-project-archived public Read only

0
0
Text · 238 B · 334f8b3 Raw
14 lines · c
1namespace std {2struct reverse_iterator {};3 4inline void5operator-(int __x, reverse_iterator __y) {}6 7template <typename _Key>8struct map {9  typedef int iterator;10 11  friend bool operator<(const map &, const map &);12};13} // namespace std14