Fix a clang warning

This commit is contained in:
Ingo Weyrich 2019-08-15 14:17:46 +02:00
parent f03d9dc505
commit 674700c2e2

View File

@ -314,7 +314,7 @@ Gtk::TreeIter ProfileStoreComboBox::getRowFromLabel (const Glib::ustring &name)
const ProfileStoreEntry *pse = currRow[methodColumns.profileStoreEntry];
if (pse->label == name) {
return currRow;
return std::move(currRow);
}
}
}