Is there anyway to prevent code generation placing an extra blank line between class members ?
I've looked in the edit generation settings panel and cannot see any setting.
Maybe its something to do with the ${definition} in c++[1] ?
For example I get this:
- Code: Select all
private:
int m_code;
int m_value;
int m_called;
Test2 m_test2;
But want this:
- Code: Select all
private:
int m_code;
int m_value;
int m_called;
Test2 m_test2;
Thanks.