| 72 | string_view const str_; |
| 73 | |
| 74 | value_test() |
| 75 | : str_( |
| 76 | "abcdefghijklmnopqrstuvwxyz") |
| 77 | { |
| 78 | // ensure this string does |
| 79 | // not fit in the SBO area. |
| 80 | BOOST_ASSERT(str_.size() > |
| 81 | string().capacity()); |
| 82 | } |
| 83 | |
| 84 | //------------------------------------------------------ |
| 85 |