Merge [53104] and [53105] from the trunk

[SVN r53198]
This commit is contained in:
Steven Watanabe
2009-05-23 06:00:42 +00:00
parent 3d20bb1310
commit 86b069ad0e
3 changed files with 10 additions and 8 deletions

View File

@ -21,7 +21,7 @@ int main()
// copy and change order
boost::array<std::string,4> seasons_orig = seasons;
for (unsigned i=seasons.size()-1; i>0; --i) {
for (std::size_t i=seasons.size()-1; i>0; --i) {
std::swap(seasons.at(i),seasons.at((i+1)%seasons.size()));
}