Ubuntu Pastebin

Paste from dandrader at Mon, 29 Jun 2015 19:30:03 +0000

Download as text
1
2
3
4
5
#ifdef Q_COMPILER_RVALUE_REFS
    inline QString(QString && other) : d(other.d) { other.d = Data::sharedNull(); }
    inline QString &operator=(QString &&other)
    { qSwap(d, other.d); return *this; }
#endif
Download as text