I couldn't get something /really/ obvious, and I imagine Richard Smith might be able to provide some text explaining the sequence of steps that's demonstrated by these files - but at least it's a bit simpler now. llvm-svn: 218840
14 lines
238 B
C++
14 lines
238 B
C++
namespace std {
|
|
struct reverse_iterator {};
|
|
|
|
inline void
|
|
operator-(int __x, reverse_iterator __y) {}
|
|
|
|
template <typename _Key>
|
|
struct map {
|
|
typedef int iterator;
|
|
|
|
friend bool operator<(const map &, const map &);
|
|
};
|
|
} // namespace std
|