diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2016-11-03 20:48:41 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2016-11-03 20:48:41 -0400 |
commit | 0413e40d82cc53c1e8180023db36108557b6f21c (patch) | |
tree | bd358b773a730070aa5e5843f76bd57931215a50 /indra/llkdu/tests | |
parent | 6cc4a8dcd2a0a320698312fe4775a946a16575e4 (diff) |
DRTVWR-418: Update KDU and llimagej2ckdu* with certain clang fixes.
Diffstat (limited to 'indra/llkdu/tests')
-rw-r--r-- | indra/llkdu/tests/llimagej2ckdu_test.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/llkdu/tests/llimagej2ckdu_test.cpp b/indra/llkdu/tests/llimagej2ckdu_test.cpp index 1407da3aa2..ae6138d4c6 100644 --- a/indra/llkdu/tests/llimagej2ckdu_test.cpp +++ b/indra/llkdu/tests/llimagej2ckdu_test.cpp @@ -29,7 +29,13 @@ // Class to test #include "llimagej2ckdu.h" +#if LL_DARWIN +// For this source, it's true that private fields in llkdumem.h are unused. +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wunused-private-field" #include "llkdumem.h" +#pragma clang diagnostic pop +#endif #include "kdu_block_coding.h" // Tut header #include "lltut.h" |