From c804e5578b41b3523e5cb933fd40d08ba132b347 Mon Sep 17 00:00:00 2001 From: Neil Date: Thu, 11 Oct 2018 16:38:05 +1100 Subject: Replace NULL and 0 with nullptr in clear cases of pure C++ code. --- src/ViewStyle.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ViewStyle.cxx') diff --git a/src/ViewStyle.cxx b/src/ViewStyle.cxx index 3e5504e74..d6a34e7ee 100644 --- a/src/ViewStyle.cxx +++ b/src/ViewStyle.cxx @@ -601,7 +601,7 @@ FontRealised *ViewStyle::Find(const FontSpecification &fs) { // Should always reach here since map was just set for all styles return it->second.get(); } - return 0; + return nullptr; } void ViewStyle::FindMaxAscentDescent() { -- cgit v1.2.3