I'm new to CodeLite and have run across an issue viewing data members in the debugger. Using a simple class:
Code: Select all
class Test
{
public:
int m_value = 10;
void add() { m_value+=10;}
};
If I step through, and call:
Test temp;
temp.add();
The program works fine but the "Locals" view will not show the new value unless I manually hit the "refresh" button. Normal variables seem to work fine.
Have found a post describing the issue from 2016 here: https://github.com/eranif/codelite/issues/1301
I'm on Mint 20.2, CodeLite 13.0.0.
Is there a fix, or even a way to automatically refresh every time I step? I've attached a screenshot of the issue.