ports/graphics/opencollada/files/patch-clang13
Tatsuki Makino 4fda63ef69
graphics/opencollada: Fix build with Clang 13+
PR:		260808
Reported by:	Robert Cina <transitive@gmail.com>
2022-03-25 21:38:02 +08:00

11 lines
333 B
Text

--- common/libBuffer/include/CommonFWriteBufferFlusher.h.orig 2018-11-26 22:43:10 UTC
+++ common/libBuffer/include/CommonFWriteBufferFlusher.h
@@ -19,6 +19,8 @@
#else
# include <unordered_map>
#endif
+#elif defined(__clang_major__) && __clang_major__ >= 13
+# include <unordered_map>
#else
# include <tr1/unordered_map>
#endif