From 76333248a8f4cc28512099fc6cafe0881e67edb5 Mon Sep 17 00:00:00 2001 From: Nat Goodspeed <nat@lindenlab.com> Date: Wed, 10 Oct 2012 09:04:31 -0400 Subject: [PATCH] #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. --- indra/llmath/v3color.h | 1 + 1 file changed, 1 insertion(+) diff --git a/indra/llmath/v3color.h b/indra/llmath/v3color.h index 56cb2ae73e5..daf3a6857b4 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| -- GitLab