diff options
author | Brian Paul <[email protected]> | 2010-07-19 10:50:08 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-07-19 10:50:11 -0600 |
commit | 369e9272def1d41bec56213512c1966071f54f93 (patch) | |
tree | fe0edf26146e153633dbe09b3e8da4016855ab56 /src/gallium/auxiliary/util/u_mempool.h | |
parent | d1671ceb71657a857f80322b96ab1443e9f564d6 (diff) |
util: add dummy field to empty structure types
Empty structure types aren't allowed with MSVC.
I haven't tested this change. Hope I haven't broken it...
Diffstat (limited to 'src/gallium/auxiliary/util/u_mempool.h')
-rw-r--r-- | src/gallium/auxiliary/util/u_mempool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_mempool.h b/src/gallium/auxiliary/util/u_mempool.h index b8d2aaefb6b..c96f9b696b5 100644 --- a/src/gallium/auxiliary/util/u_mempool.h +++ b/src/gallium/auxiliary/util/u_mempool.h @@ -43,7 +43,7 @@ enum util_mempool_threading { UTIL_MEMPOOL_MULTITHREADED = TRUE }; -struct util_mempool_page_body {}; +struct util_mempool_page_body { char dummy; }; /* The page is an array of blocks (allocations). */ struct util_mempool_page { |