You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem:
- `string_view`'s constructor takes a `char const *` and a size, not an iterator
and a size. On platforms where an array iterator is not a simple pointer, this
fails.
Solution:
- Use `data` instead of `cbegin` to access the string data.
0 commit comments