From 073808aa50f0c78e2d6fea4f56f0b814b314eb42 Mon Sep 17 00:00:00 2001 From: m-holger Date: Tue, 26 Jul 2022 12:37:50 +0100 Subject: Code tidy : replace 0 with nullptr or true --- libqpdf/BufferInputSource.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libqpdf/BufferInputSource.cc') diff --git a/libqpdf/BufferInputSource.cc b/libqpdf/BufferInputSource.cc index 033ef265..5b59c801 100644 --- a/libqpdf/BufferInputSource.cc +++ b/libqpdf/BufferInputSource.cc @@ -25,7 +25,7 @@ BufferInputSource::BufferInputSource( BufferInputSource::BufferInputSource( std::string const& description, std::string const& contents) : - m(new Members(true, description, 0)) + m(new Members(true, description, nullptr)) { this->m->buf = new Buffer(contents.length()); this->m->max_offset = QIntC::to_offset(this->m->buf->getSize()); -- cgit v1.2.3-54-g00ecf