Author Topic: Why watch window doesnt work?  (Read 3472 times)

tim777

  • Guest
Why watch window doesnt work?
« on: January 07, 2007, 01:47:24 pm »
Why I cant see in watch window the value of *my_strings.begin() from the small code:

#include <string>
#include <iostream>
#include <set>

using namespace std;
set<string> my_strings;

int main()
{
  my_strings.insert("test");
  cout << *my_strings.begin();
  return 0;
};