Use nullptr instead lf C-styled NULL
This commit is contained in:
committed by
Paul Beckingham
parent
6f19a3fbae
commit
511a235215
@@ -1734,8 +1734,8 @@ void CLI2::insertIDExpr ()
|
||||
else
|
||||
{
|
||||
bool ascending = true;
|
||||
int low = strtol (r->first.c_str (), NULL, 10);
|
||||
int high = strtol (r->second.c_str (), NULL, 10);
|
||||
int low = strtol (r->first.c_str (), nullptr, 10);
|
||||
int high = strtol (r->second.c_str (), nullptr, 10);
|
||||
if (low <= high)
|
||||
ascending = true;
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user