diff options
Diffstat (limited to 'src/corelib/tools/qbytearray.h')
-rw-r--r-- | src/corelib/tools/qbytearray.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/corelib/tools/qbytearray.h b/src/corelib/tools/qbytearray.h index 3cdcaab..b625f4c 100644 --- a/src/corelib/tools/qbytearray.h +++ b/src/corelib/tools/qbytearray.h @@ -149,6 +149,8 @@ public: { qSwap(d, other.d); return *this; } #endif + inline void swap(QByteArray &other) { qSwap(d, other.d); } + inline int size() const; bool isEmpty() const; void resize(int size); |