Switch to using typedef'd uuid types everywhere and auto for iterators

Oh, and some related opts.
This commit is contained in:
Lirusaito
2019-04-04 22:20:21 -04:00
parent 48003c8bc9
commit a1d06e682e
82 changed files with 252 additions and 271 deletions

View File

@@ -1046,9 +1046,9 @@ void LLFolderView::removeCutItems()
return;
// Get the list of clipboard item uuids and iterate through them
std::vector<LLUUID> objects;
uuid_vec_t objects;
LLInventoryClipboard::instance().retrieve(objects);
for (std::vector<LLUUID>::const_iterator iter = objects.begin();
for (auto iter = objects.begin();
iter != objects.end();
++iter)
{