summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Linden <brad@lindenlab.com>2023-10-25 16:27:38 -0700
committerBrad Linden <brad@lindenlab.com>2023-10-25 16:44:14 -0700
commit26163e2154647e99567b1ce01b89ed208eb11bb8 (patch)
treed43c79ce712513b933ed1f602b39413ee0bece88
parent673b3309dde153fdadf7559bd16a5bb6db4723a1 (diff)
Fix DRTVWR-559 std::array usage in llrender and llprimitive after merge
-rw-r--r--indra/llprimitive/llgltfmaterial.h1
-rw-r--r--indra/llrender/llrender.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/indra/llprimitive/llgltfmaterial.h b/indra/llprimitive/llgltfmaterial.h
index a078a530a4..822a0aab22 100644
--- a/indra/llprimitive/llgltfmaterial.h
+++ b/indra/llprimitive/llgltfmaterial.h
@@ -34,6 +34,7 @@
#include "lluuid.h"
#include "hbxxh.h"
+#include <array>
#include <string>
#include <map>
diff --git a/indra/llrender/llrender.h b/indra/llrender/llrender.h
index 98141d71f5..fd922affba 100644
--- a/indra/llrender/llrender.h
+++ b/indra/llrender/llrender.h
@@ -44,6 +44,8 @@
#include "llmatrix4a.h"
#include "glh/glh_linear.h"
+#include <array>
+
class LLVertexBuffer;
class LLCubeMap;
class LLImageGL;