Skip to content

Commit

Permalink
Modify test data
Browse files Browse the repository at this point in the history
  • Loading branch information
Queequeg92 committed Sep 24, 2014
1 parent 069ae56 commit e190945
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ch15/ex15.30/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ int main()
basket.add_item(Bulk_quote("Bible",20.6,20,0.3));

for (unsigned i = 0; i != 10; ++i)
basket.add_item(Bulk_quote("C++Primer",30.9,20,0.4));
basket.add_item(Bulk_quote("C++Primer",30.9,5,0.4));

for (unsigned i = 0; i != 10; ++i)
basket.add_item(Bulk_quote("CLRS",40.1,10,0.5));
basket.add_item(Quote("CLRS",40.1));

std::ofstream log("log.txt",std::ios_base::app|std::ios_base::out);

Expand Down

0 comments on commit e190945

Please sign in to comment.