Skip to content

Commit eab3078

Browse files
committed
list test: Fix build on MinGW
1 parent 8a74948 commit eab3078

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/tests/list/list.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,13 @@
3232
#include <inttypes.h>
3333
#include <vector>
3434

35+
#ifndef PRIx32
36+
#define PRIx32 "x"
37+
#endif
38+
#ifndef PRIx64
39+
#define PRIx64 "x"
40+
#endif
41+
3542
// Struct that does book keeping of what a
3643
// OpenXR application need to keep track of.
3744
struct Program {

0 commit comments

Comments
 (0)