forked from OSchip/llvm-project
parent
b5a4c50a03
commit
3bad6b61e5
|
@ -17,7 +17,6 @@
|
||||||
#include <locale>
|
#include <locale>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
std::locale l = std::locale::classic();
|
std::locale l = std::locale::classic();
|
||||||
|
|
|
@ -17,7 +17,6 @@
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
std::locale l = std::locale::classic();
|
std::locale l = std::locale::classic();
|
||||||
|
|
|
@ -52,4 +52,4 @@ operator!=(const input_iterator<T>& x, const input_iterator<U>& y)
|
||||||
return !(x == y);
|
return !(x == y);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif // ITERATORS_H
|
||||||
|
|
|
@ -30,4 +30,4 @@ public:
|
||||||
{output_iterator tmp(*this); ++(*this); return tmp;}
|
{output_iterator tmp(*this); ++(*this); return tmp;}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif // ITERATORS_H
|
||||||
|
|
|
@ -30,4 +30,4 @@ public:
|
||||||
{output_iterator tmp(*this); ++(*this); return tmp;}
|
{output_iterator tmp(*this); ++(*this); return tmp;}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif // ITERATORS_H
|
||||||
|
|
|
@ -248,4 +248,4 @@ operator-(const random_access_iterator<T>& x, const random_access_iterator<U>& y
|
||||||
return x.base() - y.base();
|
return x.base() - y.base();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif // ITERATORS_H
|
||||||
|
|
|
@ -52,4 +52,4 @@ operator!=(const input_iterator<T>& x, const input_iterator<U>& y)
|
||||||
return !(x == y);
|
return !(x == y);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif // ITERATORS_H
|
||||||
|
|
|
@ -52,4 +52,4 @@ operator!=(const input_iterator<T>& x, const input_iterator<U>& y)
|
||||||
return !(x == y);
|
return !(x == y);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif // ITERATORS_H
|
||||||
|
|
|
@ -30,4 +30,4 @@ public:
|
||||||
{output_iterator tmp(*this); ++(*this); return tmp;}
|
{output_iterator tmp(*this); ++(*this); return tmp;}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif // ITERATORS_H
|
||||||
|
|
|
@ -30,4 +30,4 @@ public:
|
||||||
{output_iterator tmp(*this); ++(*this); return tmp;}
|
{output_iterator tmp(*this); ++(*this); return tmp;}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif // ITERATORS_H
|
||||||
|
|
Loading…
Reference in New Issue