mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
(clang-format) Add RemoveSemicolon (#506)
This commit is contained in:

committed by
GitHub

parent
bcdddd4c7e
commit
baed704a38
@@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user