mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-02 12:19:54 -05:00
use CM_NULLPTR
This commit is contained in:
committed by
Brad King
parent
b4b73f56a2
commit
1d6909a287
@@ -16,7 +16,7 @@ bool cmCursesForm::Debug = false;
|
||||
|
||||
cmCursesForm::cmCursesForm()
|
||||
{
|
||||
this->Form = 0;
|
||||
this->Form = CM_NULLPTR;
|
||||
}
|
||||
|
||||
cmCursesForm::~cmCursesForm()
|
||||
@@ -24,7 +24,7 @@ cmCursesForm::~cmCursesForm()
|
||||
if (this->Form) {
|
||||
unpost_form(this->Form);
|
||||
free_form(this->Form);
|
||||
this->Form = 0;
|
||||
this->Form = CM_NULLPTR;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user