diff options
author | cosmic-linden <111533034+cosmic-linden@users.noreply.github.com> | 2024-09-10 17:38:32 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-10 17:38:32 -0700 |
commit | f90712b9837957f2a0d11386c6bf48e9a48ff745 (patch) | |
tree | df1dbaf2d2024bed5cd4dd0cd8a80d1ce3f71e2c /indra/llcommon | |
parent | 13e74a32871c7c8f7c7556c6fc08150fc6f27876 (diff) | |
parent | cde5d29faf84c5cb7fc1b0d0ff6d03f3b7354c8f (diff) |
Merge pull request #2544 from secondlife/davep-profile-session-9/10
Profile guided optimizations
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llstrider.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/llcommon/llstrider.h b/indra/llcommon/llstrider.h index 06cf8d3480..d756aca62b 100644 --- a/indra/llcommon/llstrider.h +++ b/indra/llcommon/llstrider.h @@ -41,6 +41,13 @@ public: LLStrider(Object* first) { mObjectp = first; mSkip = sizeof(Object); } ~LLStrider() { } + const LLStrider<Object>& operator=(const LLStrider<Object>& rhs) + { + mBytep = rhs.mBytep; + mSkip = rhs.mSkip; + return *this; + } + const LLStrider<Object>& operator = (Object *first) { mObjectp = first; return *this;} void setStride (S32 skipBytes) { mSkip = (skipBytes ? skipBytes : sizeof(Object));} |