From d5fa8b72b075bac66e7930ee0f0f0e3db0823cbe Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 1 Sep 2019 03:16:51 -0400 Subject: [PATCH] CStringTable: Remove unnecessary initializer std::unique_ptr always initializes to nullptr. We can remove this implicit convertion from 0 to nullptr. --- Runtime/GuiSys/CStringTable.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/GuiSys/CStringTable.hpp b/Runtime/GuiSys/CStringTable.hpp index e949fff81..b5ac329a3 100644 --- a/Runtime/GuiSys/CStringTable.hpp +++ b/Runtime/GuiSys/CStringTable.hpp @@ -7,7 +7,7 @@ namespace urde { class CStringTable { static FourCC mCurrentLanguage; u32 x0_stringCount = 0; - std::unique_ptr x4_data = 0; + std::unique_ptr x4_data; u32 m_bufLen; public: