Fixed compile warnings.
This commit is contained in:
parent
c47216a32c
commit
5101804b0e
13
3rdparty/tinyexr/tinyexr.h
vendored
13
3rdparty/tinyexr/tinyexr.h
vendored
@ -1306,8 +1306,17 @@ typedef struct {
|
||||
m_tree[TINFL_MAX_HUFF_SYMBOLS_0 * 2];
|
||||
} tinfl_huff_table;
|
||||
|
||||
#if MINIZ_HAS_64BIT_REGISTERS
|
||||
#define TINFL_USE_64BIT_BITBUF 1
|
||||
|
||||
#ifndef MINIZ_HAS_64BIT_REGISTERS
|
||||
# define MINIZ_HAS_64BIT_REGISTERS 0
|
||||
#endif
|
||||
|
||||
#ifndef TINFL_USE_64BIT_BITBUF
|
||||
# if MINIZ_HAS_64BIT_REGISTERS
|
||||
# define TINFL_USE_64BIT_BITBUF 1
|
||||
# else
|
||||
# define TINFL_USE_64BIT_BITBUF 0
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#if TINFL_USE_64BIT_BITBUF
|
||||
|
Loading…
Reference in New Issue
Block a user