Skip to content
Snippets Groups Projects
Commit b75d18df authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Fix loop conversion warning from clang

parent 118cbb97
No related branches found
No related tags found
No related merge requests found
......@@ -386,7 +386,7 @@ LLSingletonBase::vec_t LLSingletonBase::dep_sort()
// extracts just the first (key) element from each sorted_iterator, then
// uses vec_t's range constructor... but frankly this is more
// straightforward, as long as we remember the above reserve() call!
for (const SingletonDeps::sorted_iterator::value_type& pair : sdeps.sort())
for (const SingletonDeps::sorted_iterator::value_type pair : sdeps.sort())
{
ret.push_back(pair.first);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment