Funnily enough, the last fix which added readjustViews fixed the problem with stack-allocated strings, but broke heap-allocated strings. Since the move constructor is no longer default, the string views no longer get moved automatically, and now we have to do it.
Funnily enough, the last fix which added
readjustViews
fixed the problem with stack-allocated strings, but broke heap-allocated strings. Since the move constructor is no longer default, the string views no longer get moved automatically, and now we have to do it.