Hello everyone, I am using CB debugging, found it impossible to print std:: map <int, std::string> value.
You have any good ideas? Thanks!
#include <iostream>
#include <map>
#include <string>
using namespace std;
int main()
{
map<int, string> m = {{1, "Hello everybody!"}, {2, "How to debug map?"}};
m.insert (make_pair (3, "pmap m int int no-work!") );
m.insert (make_pair (4, "Need help, thanks!") );
return 0;
}
[attachment deleted by admin]