I mean, I would like to use
std::map<int, int>
to store my data. both of the key and the value is the integer.
But now once I debug it, I could not tracking the contents of the key and the value from debugger.
I use qt creator to debug it.
But if I switch the key to string that means
std::map<std::string, int>
the debugger could work correctly, I could check the contents of the key and value.