| //===----------------------------------------------------------------------===// |
| // 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. |
| //===----------------------------------------------------------------------===// |
| // Index vector out of bounds. |
| #define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0)) |
| #include "../../min_allocator.h" |
| typedef std::vector<T> C; |
| #if __cplusplus >= 201103L |
| typedef std::vector<T, min_allocator<T>> C; |