From 78bfd25964206a1f0a34170fdd90ca1a8ce242db Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Fri, 3 Sep 2021 21:43:19 -0700 Subject: Fix all uninitialized variable warnings (C26495) --- Source/UnitTests/Core/PageFaultTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/UnitTests/Core/PageFaultTest.cpp') diff --git a/Source/UnitTests/Core/PageFaultTest.cpp b/Source/UnitTests/Core/PageFaultTest.cpp index 0ff9c46a61..841ba54609 100644 --- a/Source/UnitTests/Core/PageFaultTest.cpp +++ b/Source/UnitTests/Core/PageFaultTest.cpp @@ -43,7 +43,7 @@ public: return true; } - void* m_data; + void* m_data = nullptr; std::chrono::time_point m_pre_unprotect_time, m_post_unprotect_time; }; -- cgit v1.2.3