diff options
author | Ansariel <ansariel.hiller@phoenixviewer.com> | 2024-02-19 15:44:40 +0100 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-02-19 18:06:08 +0200 |
commit | 5486d87b566aabb43fa585de3ee86e5bc77391c9 (patch) | |
tree | 9fd65de9320c4f8c7ebaede3cfcb49b97fc9bdda /indra/llwindow | |
parent | 321f283032688f0feddc696654e86f62af07121a (diff) |
Change LLPreeditor::standouts_t to std::deque since std::vector<bool> since it's a specialization that does not necessarily behave like standard STL containers
Diffstat (limited to 'indra/llwindow')
-rw-r--r-- | indra/llwindow/llpreeditor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llwindow/llpreeditor.h b/indra/llwindow/llpreeditor.h index 2be1290c02..7f1daefdac 100644 --- a/indra/llwindow/llpreeditor.h +++ b/indra/llwindow/llpreeditor.h @@ -34,7 +34,7 @@ class LLPreeditor public: typedef std::vector<S32> segment_lengths_t; - typedef std::vector<bool> standouts_t; + typedef std::deque<bool> standouts_t; // We don't delete against LLPreeditor, but compilers complain without this... |