diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-09-24 07:50:57 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 07:50:57 +0300 |
commit | 0ee1106faccf90c883d8b9ffc522a341659742ed (patch) | |
tree | 1f99a78cf8e2e0a153696bbec1e385d3f4d0018f /indra/llcommon/llthread.h | |
parent | 67f4f1ae9b64610f63c1a353e739f9a807622713 (diff) | |
parent | 776fae7dd7a6b5c1d0a2536248e767fdf4a565d4 (diff) |
Merge pull request #2661 from Ansariel/develop-viewerdisplay-improvements
Performance improvements and cleanup in llviewerdisplay.cpp
Diffstat (limited to 'indra/llcommon/llthread.h')
-rw-r--r-- | indra/llcommon/llthread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llthread.h b/indra/llcommon/llthread.h index 4194e0014d..21264351e5 100644 --- a/indra/llcommon/llthread.h +++ b/indra/llcommon/llthread.h @@ -68,7 +68,7 @@ public: // Called from MAIN THREAD. void pause(); void unpause(); - bool isPaused() { return isStopped() || mPaused; } + bool isPaused() const { return isStopped() || mPaused; } // Cause the thread to wake up and check its condition void wake(); |