Refactor MxHashTable/MxVariableTable (#283)

* Refactor MxHashTable/MxVariableTable

* Use MxS8 for Compare return type

* Cursor::DeleteMatch check and clang fix
This commit is contained in:
MS
2023-11-12 19:25:56 -05:00
committed by GitHub
parent 8b2e7a92e1
commit 8861acaf20
5 changed files with 162 additions and 112 deletions

View File

@@ -18,6 +18,7 @@ public:
MxString operator+(const char*);
MxString& operator+=(const char*);
inline MxS8 Compare(const MxString& p_str) const { return strcmp(m_data, p_str.m_data); }
inline const char* GetData() const { return m_data; }
private: