Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 5 and Version 6 of code/howto/STL


Ignore:
Timestamp:
Aug 22, 2011, 1:49:15 PM (13 years ago)
Author:
landauf
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/howto/STL

    v5 v6  
    7575if (mySet.find(value2) != mySet.end())
    7676{
    77     set::cout << value2 << " is in the set!" << std::endl;
     77    std::cout << value2 << " is in the set!" << std::endl;
    7878}
    7979
     
    107107if (it != myMap.end())
    108108{
    109     set::cout << "An element with key 'two' is in the set!" << std::endl;
     109    std::cout << "An element with key 'two' is in the set!" << std::endl;
    110110    std::cout << "The element is " << it->second << std::endl;
    111111}