Content deleted Content added
Fixed C++ iterator syntax |
brush up |
||
Line 118:
<source lang="cpp">
std::map<std::string, std::string>::iterator curr,end;
for(
std::cout << curr->first << " = " << curr->second << std::endl;
</source>
|