namespace Test1 {
struct Test2 {
enum class Test3 : unsigned {
Test4
};
};
}
1. when debugging the column size of the watcher tabs are very small. So each time I have to size them again and again. Is there a way the watcher remembers last layout setting?This is a bug I can't reproduce reliably. Do you have an exact steps to reproduce it on a simple project?
2. moving the cursor above a variable shows some information. The value of the variable is visible after pressing + button. Is there a way to unfold this info without additional button press?I'm not sure I understand what is your problem here. Please try to explain a bit better?
2. moving the cursor above a variable shows some information. The value of the variable is visible after pressing + button. Is there a way to unfold this info without additional button press?I'm not sure I understand what is your problem here. Please try to explain a bit better?
I think he's asking for a way to see the value of the variable without pressing '+' button, like automatically while hovering the mouse over it.I doubt, because the '+' is not used to show the value of the expression under the cursor. I guess that he wants the variables to be automatically expanded, but this is done automagically, too.
1. when debugging the column size of the watcher tabs are very small. So each time I have to size them again and again. Is there a way the watcher remembers last layout setting?
This is a bug I can't reproduce reliably. Do you have an exact steps to reproduce it on a simple project?
other topicCheck the make-executable in the compiler-toolchain associated with the project.
I use a custom makefile and I need a post build step. I have added:
$make -f $makefile install
It's not working but following works:
mingw32-make.exe -f $makefile install