From 22980bea48da60918354463d78dd53938f764725 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 10 Nov 2015 10:17:48 +0100 Subject: loplugin:nullptr (automatic rewrite) Change-Id: I04ceb5b1514a1d0bf123a1cded5e1aac3e8dde2f --- io/source/TextInputStream/TextInputStream.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'io/source/TextInputStream') diff --git a/io/source/TextInputStream/TextInputStream.cxx b/io/source/TextInputStream/TextInputStream.cxx index 98db657aa55f..de67189f844a 100644 --- a/io/source/TextInputStream/TextInputStream.cxx +++ b/io/source/TextInputStream/TextInputStream.cxx @@ -115,10 +115,10 @@ public: OTextInputStream::OTextInputStream() : mbEncodingInitialized(false) - , mConvText2Unicode(NULL) - , mContextText2Unicode(NULL) + , mConvText2Unicode(nullptr) + , mContextText2Unicode(nullptr) , mSeqSource(READ_BYTE_COUNT) - , mpBuffer(NULL) + , mpBuffer(nullptr) , mnBufferSize(0) , mnCharsInBuffer(0) , mbReachedEOF(false) -- cgit