| //===----------------------------------------------------------------------===// |
| // The LLVM Compiler Infrastructure |
| // This file is distributed under the University of Illinois Open Source |
| // License. See LICENSE.TXT for details. |
| //===----------------------------------------------------------------------===// |
| // template <class T, class Container> |
| // bool operator< (const queue<T, Container>& x,const queue<T, Container>& y); |
| // template <class T, class Container> |
| // bool operator> (const queue<T, Container>& x,const queue<T, Container>& y); |
| // template <class T, class Container> |
| // bool operator>=(const queue<T, Container>& x,const queue<T, Container>& y); |
| // template <class T, class Container> |
| // bool operator<=(const queue<T, Container>& x,const queue<T, Container>& y); |
| for (int i = 0; i < n; ++i) |
| std::queue<int> q1 = make<std::queue<int> >(5); |
| std::queue<int> q2 = make<std::queue<int> >(10); |