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 e705f23 commit ddfe234Copy full SHA for ddfe234
examples/gguf-hash/deps/xxhash/xxhash.h
@@ -1688,7 +1688,11 @@ struct XXH64_state_s {
1688
#ifndef XXH_NO_XXH3
1689
1690
#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L) /* >= C11 */
1691
+/* This check is a workaround for missing stdalign.h found in https://github.com/deepmind/mujoco/issues/862 */
1692
+/* Once users stop using Windows SDK under 10.0.22000 we can drop this check */
1693
+#if (_MSC_VER >= 1000)
1694
# include <stdalign.h>
1695
+#endif
1696
# define XXH_ALIGN(n) alignas(n)
1697
#elif defined(__cplusplus) && (__cplusplus >= 201103L) /* >= C++11 */
1698
/* In C++ alignas() is a keyword */
0 commit comments