Skip to content

Commit

Permalink
6.18: declaration rahter than definition
Browse files Browse the repository at this point in the history
  • Loading branch information
pezy committed May 16, 2017
1 parent bfc4461 commit 2e64b63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ch06/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,13 +159,13 @@ should be changed.
(a)
```cpp
bool compare(const matrix &m1, const matrix &m2){ /.../ }
bool compare(const matrix &m1, const matrix &m2);
```

(b)

```cpp
vector<int>::iterator change_val(int, vector<int>::iterator) { /.../ }
vector<int>::iterator change_val(int, vector<int>::iterator);
```
## Exercise 6.19
Expand Down

0 comments on commit 2e64b63

Please sign in to comment.