Hi all,
Consider this code:
```
void foo(int& x)
{
++x;
// Breakpoint
}
```
Reference parameter `x` is shown like this:
```
(lldb) frame variable
(int &) x = 0x00007fff5fbff5e8 (&x = 33)
```
Should this perhaps be improved? (I find the "&x = 33" a little confusing)
Some ideas:
A. (int &) x = 0x00007fff5fbff5e8 (*x = 33)
B. (int &) x = 33 (&x = 0x00007fff5fbff5e8)
Cheers,
Johan
_______________________________________________
lldb-dev mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev