diff options
author | Richard Linden <none@none> | 2013-03-18 20:23:23 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-03-18 20:23:23 -0700 |
commit | 059d1a75b2d26752e7753346dc0b8cc521453783 (patch) | |
tree | ac640b7a133e2ca419897a9021106b21db004936 /indra/llmessage | |
parent | df6dfc4d1d3f9efc0035b3596dfbd9ea251328b6 (diff) | |
parent | 47c608becb629e368a1b227ab30299df7155effd (diff) |
Automated merge with ssh://hg.lindenlab.com/richard/viewer-interesting-metrics
Diffstat (limited to 'indra/llmessage')
-rw-r--r-- | indra/llmessage/lldatapacker.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llmessage/lldatapacker.h b/indra/llmessage/lldatapacker.h index b0a638c16e..226752d52e 100644 --- a/indra/llmessage/lldatapacker.h +++ b/indra/llmessage/lldatapacker.h @@ -170,6 +170,7 @@ public: S32 getBufferSize() const { return mBufferSize; } const U8* getBuffer() const { return mBufferp; } void reset() { mCurBufferp = mBufferp; mWriteEnabled = (mCurBufferp != NULL); } + void shift(S32 offset) { reset(); mCurBufferp += offset;} void freeBuffer() { delete [] mBufferp; mBufferp = mCurBufferp = NULL; mBufferSize = 0; mWriteEnabled = FALSE; } void assignBuffer(U8 *bufferp, S32 size) { |