Merge: Codechange: Use null pointer literal instead of the NULL macro

This commit is contained in:
Jonathan G Rennison
2019-04-11 18:14:13 +01:00
585 changed files with 6604 additions and 6604 deletions

View File

@@ -72,7 +72,7 @@ public:
/// Get the instruction's opcode
inline SignalOpcode Opcode() const { return this->opcode; }
/// Get the previous instruction. If this is NULL, then this is the first
/// Get the previous instruction. If this is nullptr, then this is the first
/// instruction.
inline SignalInstruction *Previous() const { return this->previous; }
@@ -264,7 +264,7 @@ public:
virtual void Remove();
/** The next instruction after this one. On the End instruction, this should
* be NULL.
* be nullptr.
*/
SignalInstruction *next;