Skip to content

Commit

Permalink
Merge pull request pezy#3 from Mooophy/master
Browse files Browse the repository at this point in the history
SYN
  • Loading branch information
Queequeg92 committed Nov 18, 2014
2 parents 7caf74b + be02cc9 commit 55ddacb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch05/ex5_17.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ int main()
auto size = vec1.size() < vec2.size() ? vec1.size() : vec2.size();
for (decltype(vec1.size()) i = 0; i != size; ++i) {
if (vec1[i] != vec2[i]) { cout << "false" << endl; break; }
if (i == size - 1) cout << "ture" << endl;
}
cout << "true" << endl;

return 0;
}

0 comments on commit 55ddacb

Please sign in to comment.