diff options
author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-02-19 18:41:18 +0200 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-02-19 19:26:35 +0200 |
commit | 88f168f33bcf2bea7ea4769233793cf67d2cf37e (patch) | |
tree | 29982b8d51fabea22f95bfc0f9cb209057754b5b | |
parent | fd7f817171f9842470e83832c67d48065e81ca01 (diff) |
viewer#836 Xcode buildfix
-rw-r--r-- | indra/llwindow/llwindowmacosx-objc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llwindow/llwindowmacosx-objc.h b/indra/llwindow/llwindowmacosx-objc.h index f9a7a098cb..e406f7dd19 100644 --- a/indra/llwindow/llwindowmacosx-objc.h +++ b/indra/llwindow/llwindowmacosx-objc.h @@ -30,6 +30,7 @@ #include <map> #include <vector> +#include <deque> //fir CGSize #include <CoreGraphics/CGGeometry.h> @@ -37,7 +38,7 @@ typedef std::vector<std::pair<int, bool> > segment_t; typedef std::vector<int> segment_lengths; -typedef std::vector<bool> segment_standouts; +typedef std::deque<bool> segment_standouts; struct attributedStringInfo { segment_lengths seg_lengths; |