summaryrefslogtreecommitdiff
path: root/core/fpdfapi/cmaps/cmap_int.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/fpdfapi/cmaps/cmap_int.h')
-rw-r--r--core/fpdfapi/cmaps/cmap_int.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/fpdfapi/cmaps/cmap_int.h b/core/fpdfapi/cmaps/cmap_int.h
index 15e153114e..464a3414e0 100644
--- a/core/fpdfapi/cmaps/cmap_int.h
+++ b/core/fpdfapi/cmaps/cmap_int.h
@@ -11,15 +11,15 @@
#include "core/fxcrt/fx_system.h"
struct FXCMAP_CMap {
- enum MapType { None, Single, Range };
+ enum MapType : uint8_t { None, Single, Range };
const char* m_Name;
- MapType m_WordMapType;
const uint16_t* m_pWordMap;
- uint16_t m_WordCount;
- MapType m_DWordMapType;
const uint16_t* m_pDWordMap;
+ uint16_t m_WordCount;
uint16_t m_DWordCount;
+ MapType m_WordMapType;
+ MapType m_DWordMapType;
int8_t m_UseOffset;
};