mirror of
https://github.com/privacore/open-source-search-engine.git
synced 2025-07-10 02:06:08 -04:00
Change char to bool for actually bool variables
This commit is contained in:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user