Change char to bool for actually bool variables

This commit is contained in:
Ai Lin Chia
2016-09-13 16:09:50 +02:00
parent 1781302bef
commit c22b54f9ae

@ -318,19 +318,18 @@ class HashTableX {
int32_t m_numSlotsUsed;
uint32_t m_mask;
char m_doFree;
bool m_doFree;
char *m_buf;
int32_t m_bufSize;
char m_useKeyMagic;
bool m_useKeyMagic;
int32_t m_ks;
int32_t m_ds;
char m_allowDups;
bool m_allowDups;
// a flag used by XmlDoc.cpp
bool m_addIffNotUnique;
bool m_isSaving;
bool m_needsSave;