| 35 | string_view const str_; |
| 36 | |
| 37 | array_test() |
| 38 | : str_( |
| 39 | "abcdefghijklmnopqrstuvwxyz") |
| 40 | { |
| 41 | // ensure this string does |
| 42 | // not fit in the SBO area. |
| 43 | BOOST_ASSERT(str_.size() > |
| 44 | string().capacity()); |
| 45 | |
| 46 | } |
| 47 | |
| 48 | void |
| 49 | check(array const& a) |