diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-05-07 08:40:59 +0100 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-05-07 08:40:59 +0100 |
commit | 3b2073270b2702a682b655c470ecae310822c29e (patch) | |
tree | f0c5484493ffc1319439f31b1df77bf9d818bdbb /indra/llcommon/llstrider.h | |
parent | b89c31052802450ec59fee48ace4c66a713755ab (diff) | |
parent | 9b9eedb8a3db6d4b1e5eab8dbff8f68415cfd4b3 (diff) |
merge from viewer-trunk
Diffstat (limited to 'indra/llcommon/llstrider.h')
-rw-r--r-- | indra/llcommon/llstrider.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llstrider.h b/indra/llcommon/llstrider.h index 369b06b48a..44ea80a36b 100644 --- a/indra/llcommon/llstrider.h +++ b/indra/llcommon/llstrider.h @@ -51,7 +51,7 @@ public: void setStride (S32 skipBytes) { mSkip = (skipBytes ? skipBytes : sizeof(Object));} void skip(const U32 index) { mBytep += mSkip*index;} - + U32 getSkip() const { return mSkip; } Object* get() { return mObjectp; } Object* operator->() { return mObjectp; } Object& operator *() { return *mObjectp; } |