Hello,
Sorry for the multiple messages. One more thing. When I run lldb via command line I get an empty string instead of the correct value:
```
(lldb) type category list
Category: default (enabled)
Category: libcxx (enabled)
Category: VectorTypes (enabled, applicable for language(s): objective-c++)
Category: system (enabled, applicable for language(s): objective-c++)
Category: cplusplus (enabled)
Category: objc (enabled)
(lldb) s
Process 30813 stopped
* thread #1, name = 'a.out', stop reason = step in
frame #0: 0x0000000000400df4 a.out`main(argc=1, argv=0x00007fffffffcd68) at hello.cpp:7:14
4 int main(int argc, char const *argv[])
5 {
6 std::string s1{ "hello" };
-> 7 std::string s2{ "world" };
8
9 std::cout << s1 << " " << s2 << "!\n";
10 return 0;
(lldb) p s1
(std::__1::string) $0 = ""
```
Puya