File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Standard Template Library Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,7 @@ int main() {
15
15
lookup.insert (make_pair (30 , " Raj" ));
16
16
lookup.insert (make_pair (20 , " Bob" ));
17
17
18
- // multimap stores values with the same key unlike normal map
19
- // not storing same key values and over writing the string
18
+ // multimap stores values with the same key unlike normal map not storing same key values and over writing the string
20
19
21
20
for (multimap<int , string>::iterator it = lookup.begin (); it != lookup.end (); it++) {
22
21
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ int main() {
40
40
Test &test1 = testStack.top();
41
41
testStack.pop();
42
42
test1.print();
43
- Reference refers to destroy objects
43
+ Reference refers to destroyed objects
44
44
*/
45
45
46
46
while (testStack.size () > 0 ) {
You can’t perform that action at this time.
0 commit comments