You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a main.cpp source file and a main.h header file:
#include"main.h"intmain() {
returnfoo(0);
}
doublefoo(intparam) {
return1 / param;
}
If I open this project and analyze it ClangSA will find a division by zero error:
If I click on the first bug step which refer to the main.cpp source file it will show the bug step nicely in the source code. If I click on the 3rd bug step which refers to main.h file the plugin will show me the bug step in the source code but in the tree view it will close the bug:
We should keep the bug open and keep the bug path selection (3rd bug step has to be selected) in this situation.
The text was updated successfully, but these errors were encountered:
I have a main.cpp source file and a main.h header file:
If I open this project and analyze it ClangSA will find a division by zero error:
If I click on the first bug step which refer to the main.cpp source file it will show the bug step nicely in the source code. If I click on the 3rd bug step which refers to main.h file the plugin will show me the bug step in the source code but in the tree view it will close the bug:
We should keep the bug open and keep the bug path selection (3rd bug step has to be selected) in this situation.
The text was updated successfully, but these errors were encountered: