//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template , class Pred = equal_to, // class Alloc = allocator>> // class unordered_multimap // size_type max_bucket_count() const; #include #include #include int main() { { typedef std::unordered_multimap C; typedef C::const_iterator I; typedef std::pair P; const C c; assert(c.max_bucket_count() > 0); } }