Skip to content

Commit

Permalink
Merge pull request pezy#45 from shbling/patch-8
Browse files Browse the repository at this point in the history
Update ex7_23_24_25.cpp
  • Loading branch information
Mooophy committed Nov 16, 2014
2 parents bc295ae + 1a869d0 commit 852584c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch07/ex7_23_24_25.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,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, const char &c) : height(h), width(w), contents(h * w, c){ }
wyScreen(const pos h, const pos w, const char c) : height(h), width(w), contents(h * w, c){ }

private:
pos cursor = 0;
Expand Down

0 comments on commit 852584c

Please sign in to comment.