Skip to content

Commit

Permalink
Fixed pezy#147
Browse files Browse the repository at this point in the history
  • Loading branch information
pezy chen authored Jun 25, 2018
1 parent ef5bec0 commit e55680c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch15/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ derived dobj; base *bp2 = &dobj; base &br2 = dobj;
(a) bobj.print(); // base::print()
(b) dobj.print(); // derived::print()
(c) bp1->name(); // base::name()
(d) bp2->name(); // derived::name()
(d) bp2->name(); // base::name()
(e) br1.print(); // base::print()
(f) br2.print(); // derived::print()
```
Expand Down

0 comments on commit e55680c

Please sign in to comment.