Community
Participate
Working Groups
I got <error(s)_during_the_evaluation>, "Target request failed: Unknown type: "bool" " when trying to evaluate a bool variable for a C++ program. This is the C++ source: ************************ #include <iostream> using namespace std; int main(void) { bool flag = true; cout << "flag is " << flag << endl; flag = false; cout << "now flag is " << flag << endl; return 0; } *************************
Fixed in 4.0 and HEAD.