use nullptr instead of NULL

This commit is contained in:
john30
2018-05-06 14:54:52 +02:00
parent dc12476bc1
commit 1c17f7c466
41 changed files with 625 additions and 626 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ class TemParamDataType : public NumberDataType {
* @param id the type identifier.
*/
explicit TemParamDataType(const string& id)
: NumberDataType(id, 16, 0, 0xffff, 0, 0xffff, 0, NULL) {}
: NumberDataType(id, 16, 0, 0xffff, 0, 0xffff, 0, nullptr) {}
// @copydoc
result_t derive(int divisor, size_t bitCount, const NumberDataType** derived) const override;