Missed clang-format on mxqueue.h

This commit is contained in:
disinvite 2023-11-05 16:09:08 -05:00
parent 02e012167a
commit 6643cc0f28

View File

@ -6,22 +6,21 @@
template <class T>
class MxQueue : public MxList<T> {
public:
void Enqueue(T& p_obj)
{
// TODO
}
void Enqueue(T& p_obj)
{
// TODO
}
MxBool Dequeue(T& p_obj)
{
MxBool has_next = (m_first != NULL);
if (m_first) {
p_obj = m_first->GetValue();
_DeleteEntry(m_first);
}
MxBool Dequeue(T& p_obj)
{
MxBool has_next = (m_first != NULL);
if (m_first) {
p_obj = m_first->GetValue();
_DeleteEntry(m_first);
}
return has_next;
}
return has_next;
}
};
#endif // MXQUEUE_H