mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-03 07:35:48 +08:00
refs #403 fix return type in CCollection::insert
This commit is contained in:
@@ -196,7 +196,7 @@ namespace BlackMisc
|
||||
* \param value The value to move in.
|
||||
* \pre The collection must be initialized.
|
||||
*/
|
||||
iterator insert(const_iterator hint, T &&value) { insert(std::move(value)); Q_UNUSED(hint); }
|
||||
iterator insert(const_iterator hint, T &&value) { Q_UNUSED(hint); return insert(std::move(value)); }
|
||||
|
||||
/*!
|
||||
* \brief Inserts an element into the collection.
|
||||
|
||||
Reference in New Issue
Block a user