Skip to content

Commit

Permalink
Update ex14_16_StrBlobTest.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Mooophy committed Jun 28, 2015
1 parent 8e2fd7e commit c4a344a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ch14/ex14_16_StrBlobTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

int main()
{
StrBlob sb{ "Hello", "World", "Pezy" };
StrBlob sb{ "Hello", "World", "Pezy" };

for (ConstStrBlobPtr iter = sb.cbegin(); iter != sb.cend(); iter.incr()) {
std::cout << iter.deref() << " ";
}
std::cout << std::endl;
for (ConstStrBlobPtr iter = sb.cbegin(); iter != sb.cend(); iter.incr()) {
std::cout << iter.deref() << " ";
}
std::cout << std::endl;
}

0 comments on commit c4a344a

Please sign in to comment.