Skip to content

Commit

Permalink
Merge pull request pezy#1 from Mooophy/master
Browse files Browse the repository at this point in the history
SYN
  • Loading branch information
Queequeg92 committed Nov 17, 2014
2 parents 852584c + 2f76fbe commit 234d594
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ch07/ex7_27.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class wyScreen

//! constructs:
wyScreen() = default;
wyScreen(const pos h, const pos w) : height(h), width(w), contents(" ", h * w) { }
wyScreen(const pos h, const pos w) : height(h), width(w), contents(h * w,' ') { }
wyScreen(const pos h, const pos w, char c) : height(h), width(w), contents(h * w, c){ }

wyScreen &move(const pos r, const pos c);
Expand Down
4 changes: 2 additions & 2 deletions ch07/ex7_31.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ class Y;

class X
{
Y* p2y;
Y* py2;
};

class Y
{
X* p2x;
X x2;
};


Expand Down

0 comments on commit 234d594

Please sign in to comment.