summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2012-10-10 09:04:31 -0400
committerNat Goodspeed <nat@lindenlab.com>2012-10-10 09:04:31 -0400
commit76333248a8f4cc28512099fc6cafe0881e67edb5 (patch)
tree7b439fdc1679d0da97f9965f591452ccfcdc515a
parent075e55c4589b16dd5089075f14f5257654438264 (diff)
#include <string.h> in v3color.h: recent Linux compilers care.
Linux dev builds have started breaking because v3color.h uses strlen() and strncpy() without declaring them. Add relevant #include, which fixes.
-rw-r--r--indra/llmath/v3color.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llmath/v3color.h b/indra/llmath/v3color.h
index 56cb2ae73e..daf3a6857b 100644
--- a/indra/llmath/v3color.h
+++ b/indra/llmath/v3color.h
@@ -33,6 +33,7 @@ class LLVector4;
#include "llerror.h"
#include "llmath.h"
#include "llsd.h"
+#include <string.h>
// LLColor3 = |r g b|