>
>
> inline QVector<T> &operator+=(T &&t)
> { append(std::move(t)); return *this; }
>

Ah, yes! This makes sense.

inline QVector<T> &operator<< (T &&t)
> { append(std::move(t)); return *this; }
>
> Note they might be missing from qvarlengtharray too.
>

Thanks for the clarification.

-mandeep


>
> 'Allan
>
>
>
>
>
_______________________________________________
Development mailing list
[email protected]
http://lists.qt-project.org/mailman/listinfo/development

Reply via email to