Gui: use emplace_back

This commit is contained in:
berniev
2022-08-05 16:06:02 +10:00
committed by wwmayer
parent ac81a8380f
commit 066656f62a
19 changed files with 52 additions and 52 deletions

View File

@@ -160,7 +160,7 @@ std::vector<std::string> ViewProviderOriginFeature::getDisplayModes () const
{
// add modes
std::vector<std::string> StrList;
StrList.push_back("Base");
StrList.emplace_back("Base");
return StrList;
}