Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8e95e4 commit 0269373Copy full SHA for 0269373
tests/tester.cc
@@ -1,11 +1,20 @@
1
#define TINYOBJLOADER_IMPLEMENTATION
2
#include "../tiny_obj_loader.h"
3
4
+#ifdef __GNUC__
5
+#pragma GCC diagnostic ignored "-Wmissing-declarations"
6
+#pragma GCC diagnostic ignored "-Wcast-qual"
7
+#pragma GCC diagnostic ignored "-Wsign-conversion"
8
+#pragma GCC diagnostic ignored "-Wformat"
9
+#pragma GCC diagnostic ignored "-Wswitch-default"
10
+#endif
11
+
12
#ifdef __clang__
13
#pragma clang diagnostic push
14
#pragma clang diagnostic ignored "-Weverything"
15
#endif
16
17
18
#include "acutest.h"
19
20
0 commit comments