From 4732da8dc2ffb44a418b0e776ff607079720736a Mon Sep 17 00:00:00 2001 From: Richard Kimberly Heck Date: Mon, 16 Mar 2020 02:09:39 -0400 Subject: [PATCH] Nullptr warnings --- src/Font.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Font.h b/src/Font.h index b845666d14..79e41b17e9 100644 --- a/src/Font.h +++ b/src/Font.h @@ -33,7 +33,7 @@ class Font { public: /// - explicit Font(FontInfo = sane_font, Language const * l = 0); + explicit Font(FontInfo = sane_font, Language const * l = nullptr); /// FontInfo & fontInfo() { return bits_; } @@ -90,7 +90,7 @@ public: /// Build GUI description of font state - docstring const stateText(BufferParams * params = 0, bool const terse = false) const; + docstring const stateText(BufferParams * params = nullptr, bool const terse = false) const; /// void validate(LaTeXFeatures & features) const;