summaryrefslogtreecommitdiffhomepage
path: root/proto-wine/wine-shm.h
diff options
context:
space:
mode:
Diffstat (limited to 'proto-wine/wine-shm.h')
-rw-r--r--proto-wine/wine-shm.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/proto-wine/wine-shm.h b/proto-wine/wine-shm.h
index a717dcc8..536f647f 100644
--- a/proto-wine/wine-shm.h
+++ b/proto-wine/wine-shm.h
@@ -3,9 +3,18 @@
#define WINE_SHM_NAME "facetracknoir-wine-shm"
#define WINE_MTX_NAME "facetracknoir-wine-mtx"
+#ifdef __clang__
+# pragma clang diagnostic push
+# pragma clang diagnostic ignored "-Wreserved-id-macro"
+#endif
+
// OSX sdk 10.8 build error otherwise
#undef _LIBCPP_MSVCRT
+#ifdef __clang__
+# pragma clang diagnostic pop
+#endif
+
#include <memory>
template<typename t> using ptr = std::shared_ptr<t>;