Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sanerror authored Nov 10, 2016
1 parent 4e008b1 commit 55691fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ch13/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ Sales_data::Sales_data(Sales_data rhs);
Point global;
Point foo_bar(Point arg) // 1
{
Point local = arg, *heap = new Point(global); // 2, 3
*heap = local;
Point local = arg, *heap = new Point(global); // 2: local = arg
*heap = local; // 3: *heap = local
Point pa[4] = { local, *heap }; //4, 5
return *heap; //6
}
Expand Down

0 comments on commit 55691fd

Please sign in to comment.