Home
last modified time | relevance | path

Searched refs:a_priority_queue (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/libs/serialization/test/
Dtest_priority_queue.cpp36 std::priority_queue<A, std::vector<A> > a_priority_queue, a_priority_queue1; in test_main() local
37 a_priority_queue.push(A()); in test_main()
38 a_priority_queue.push(A()); in test_main()
39 a_priority_queue.push(A()); in test_main()
40 a_priority_queue.push(A()); in test_main()
44 oa << boost::serialization::make_nvp("a_priority_queue",a_priority_queue); in test_main()
51 BOOST_CHECK(a_priority_queue.size() == a_priority_queue1.size()); in test_main()
53 for(int i = a_priority_queue.size(); i-- > 0;){ in test_main()
54 const A & a1 = a_priority_queue.top(); in test_main()
57 a_priority_queue.pop(); in test_main()