diff options
Diffstat (limited to 'indra/test/lltut.h')
-rwxr-xr-x | indra/test/lltut.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/test/lltut.h b/indra/test/lltut.h index 243e869be7..5428be3719 100755 --- a/indra/test/lltut.h +++ b/indra/test/lltut.h @@ -31,7 +31,12 @@ #include "is_approx_equal_fraction.h" // instead of llmath.h +// turn off warnings about unused functions from clang for tut package +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wunused-function" #include <tut/tut.hpp> +#pragma clang diagnostic pop + #include <cstring> class LLDate; |