Skip to content

Commit

Permalink
Merge branch 'master' into dev/sphinxdocs
Browse files Browse the repository at this point in the history
  • Loading branch information
daboehme committed Aug 20, 2015
2 parents b25a2f9 + 3ea3c93 commit f6f972a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/reader/Expand.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ struct Expand::ExpandImpl
m_os << (nentry++ ? "," : "") << entry.first << "=";

int nelem = 0;
for (const Variant &elem : entry.second)
m_os << (nelem++ ? "/" : "") << elem.to_string();
for (auto it = entry.second.rbegin(); it != entry.second.rend(); ++it)
m_os << (nelem++ ? "/" : "") << (*it).to_string();
}

if (nentry > 0)
Expand Down

0 comments on commit f6f972a

Please sign in to comment.