| //===----------------------------------------------------------------------===// |
| // 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. |
| //===----------------------------------------------------------------------===// |
| // const_iterator begin() const; |
| #include "min_allocator.h" |
| typename S::iterator b = s.begin(); |
| typename S::const_iterator cb = cs.begin(); |
| typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S; |