Codechange: Use null pointer literal instead of the NULL macro

This commit is contained in:
Henry Wilson
2019-04-10 22:07:06 +01:00
committed by Michael Lutz
parent 3b4f224c0b
commit 7c8e7c6b6e
463 changed files with 5674 additions and 5674 deletions

View File

@@ -32,19 +32,19 @@ static const int MAX_GET_SETTING_OPS = 100000;
class ScriptInfo : public SimpleCountedObject {
public:
ScriptInfo() :
engine(NULL),
SQ_instance(NULL),
main_script(NULL),
tar_file(NULL),
author(NULL),
name(NULL),
short_name(NULL),
description(NULL),
date(NULL),
instance_name(NULL),
engine(nullptr),
SQ_instance(nullptr),
main_script(nullptr),
tar_file(nullptr),
author(nullptr),
name(nullptr),
short_name(nullptr),
description(nullptr),
date(nullptr),
instance_name(nullptr),
version(0),
url(NULL),
scanner(NULL)
url(nullptr),
scanner(nullptr)
{}
~ScriptInfo();