mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-14 00:17:55 -05:00
Change NULLs to nullptrs.
This commit is contained in:
@ -57,7 +57,7 @@ public:
|
||||
// advance the read pointer
|
||||
m_read_ptr = m_read_ptr->next;
|
||||
// set the next element to NULL to stop the recursive deletion
|
||||
tmpptr->next = NULL;
|
||||
tmpptr->next = nullptr;
|
||||
delete tmpptr; // this also deletes the element
|
||||
}
|
||||
|
||||
@ -86,7 +86,7 @@ private:
|
||||
class ElementPtr
|
||||
{
|
||||
public:
|
||||
ElementPtr() : current(NULL), next(NULL) {}
|
||||
ElementPtr() : current(nullptr), next(nullptr) {}
|
||||
|
||||
~ElementPtr()
|
||||
{
|
||||
|
Reference in New Issue
Block a user