From d802d392811be44d34ae9cd23f616db93e54c50f Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sun, 9 Mar 2014 21:14:26 +0100 Subject: clang-modernize -use-nullptr and s/\bNULL\b/nullptr/g for *.cpp/h/mm files not compiled on my machine --- Source/Core/VideoCommon/IndexGenerator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/VideoCommon/IndexGenerator.cpp') diff --git a/Source/Core/VideoCommon/IndexGenerator.cpp b/Source/Core/VideoCommon/IndexGenerator.cpp index 809a2be2e2..0989b65283 100644 --- a/Source/Core/VideoCommon/IndexGenerator.cpp +++ b/Source/Core/VideoCommon/IndexGenerator.cpp @@ -33,7 +33,7 @@ void IndexGenerator::Init() primitive_table[3] = IndexGenerator::AddStrip; primitive_table[4] = IndexGenerator::AddFan; } - primitive_table[1] = NULL; + primitive_table[1] = nullptr; primitive_table[5] = &IndexGenerator::AddLineList; primitive_table[6] = &IndexGenerator::AddLineStrip; primitive_table[7] = &IndexGenerator::AddPoints; -- cgit v1.2.3