Skip to content
Snippets Groups Projects
Verified Commit 8a789d06 authored by Houtan Bastani's avatar Houtan Bastani
Browse files

aesthetic fix: for conformity to the rest of the code, prefer `const auto` to `auto const`

parent 4866bb59
Branches
No related tags found
No related merge requests found
......@@ -424,11 +424,11 @@ ModFile::transformPass(bool nostrict, bool stochastic, bool compute_xrefs, const
// Get all equation tags associated with VARs and Trend Component Models
set<string> eqtags;
for (auto const & it : trend_component_model_table.getEqTags())
for (const auto & it : trend_component_model_table.getEqTags())
for (auto & it1 : it.second)
eqtags.insert(it1);
for (auto const & it : var_model_table.getEqTags())
for (const auto & it : var_model_table.getEqTags())
for (auto & it1 : it.second)
eqtags.insert(it1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment