diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2012-10-10 09:04:31 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2012-10-10 09:04:31 -0400 |
commit | 76333248a8f4cc28512099fc6cafe0881e67edb5 (patch) | |
tree | 7b439fdc1679d0da97f9965f591452ccfcdc515a /indra | |
parent | 075e55c4589b16dd5089075f14f5257654438264 (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.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llmath/v3color.h | 1 |
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| |