replace boolT with plain old bool in a few places

This commit is contained in:
nemerle
2014-02-28 11:26:02 +01:00
parent 5c7799b778
commit 1c5e1c2fce
37 changed files with 3154 additions and 211 deletions

View File

@@ -67,7 +67,7 @@ static void displayMemMap(void);
****************************************************************************/
bool DccFrontend::FrontEnd ()
{
Project::get()->callGraph = 0;
Project::get()->callGraph = nullptr;
Project::get()->create(m_fname);
/* Load program into memory */
@@ -213,7 +213,7 @@ void DccFrontend::LoadImage(Project &proj)
uint8_t buf[4];
/* Open the input file */
if ((fp = fopen(proj.binary_path().c_str(), "rb")) == NULL)
if ((fp = fopen(proj.binary_path().c_str(), "rb")) == nullptr)
{
fatalError(CANNOT_OPEN, proj.binary_path().c_str());
}