Update to build on Xcode 6.0: turn off warnings about unused functions from clang for tut package

master
callum_linden 2014-10-17 16:53:40 -07:00
parent 7359e9300a
commit 618bb404fc
1 changed files with 8 additions and 0 deletions

View File

@ -26,7 +26,15 @@
* $/LicenseInfo$
*/
#if LL_DARWIN
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunused-function"
#include <tut/tut.hpp>
#pragma clang diagnostic pop
#elif
#include <tut/tut.hpp>
#endif
#include "linden_common.h"
#include "lltut.h"
#include "llbuffer.h"