Update to build on Xcode 6.0 (fix unit tests): turn off warnings for multiple unused private members

master
callum_linden 2014-10-21 17:50:31 -07:00
parent 87eb43e63a
commit d7990bc9b2
1 changed files with 9 additions and 0 deletions

View File

@ -28,7 +28,16 @@
#include "linden_common.h"
// Class to test
#include "llimagej2ckdu.h"
#if LL_DARWIN
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunused-private-field"
#include "llkdumem.h"
#pragma clang diagnostic pop
#elif
#include "llkdumem.h"
#endif
#include "kdu_block_coding.h"
// Tut header
#include "lltut.h"