We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43ee364 commit ea16c25Copy full SHA for ea16c25
tom/src/tom/commands/make/seedercommand.cpp
@@ -93,12 +93,11 @@ QString SeederCommand::prepareSeederClassName(QString &&className)
93
94
// Append Seeder
95
if (!className.endsWith(Seeder_lc))
96
- return className.append(Seeder);
+ return std::move(className.append(Seeder));
97
98
// Change Xyzseeder to XyzSeeder
99
className[className.size() - Seeder_lc_size] = QChar('S');
100
101
- // CUR stackoverflow, still confused about this moves, when I assign a new value silverqx
102
return std::move(className);
103
}
104
0 commit comments