(clang-format) Add RemoveSemicolon (#506)

This commit is contained in:
Christian Semmler
2024-01-29 17:30:20 -05:00
committed by GitHub
parent bcdddd4c7e
commit baed704a38
39 changed files with 81 additions and 80 deletions

View File

@@ -53,8 +53,8 @@ public:
virtual ~MxList() override;
void Append(T p_obj) { InsertEntry(p_obj, this->m_last, NULL); };
void Prepend(T p_obj) { InsertEntry(p_obj, NULL, this->m_first); };
void Append(T p_obj) { InsertEntry(p_obj, this->m_last, NULL); }
void Prepend(T p_obj) { InsertEntry(p_obj, NULL, this->m_first); }
void DeleteAll(MxBool p_destroy = TRUE);
MxU32 GetCount() { return this->m_count; }
@@ -75,7 +75,7 @@ class MxPtrList : public MxList<T*> {
public:
MxPtrList(MxBool p_ownership) { SetOwnership(p_ownership); }
static void Destroy(T* p_obj) { delete p_obj; };
static void Destroy(T* p_obj) { delete p_obj; }
void SetOwnership(MxBool p_ownership)
{