diff options
Diffstat (limited to 'Source/cmMakeDepend.cxx')
-rw-r--r-- | Source/cmMakeDepend.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmMakeDepend.cxx b/Source/cmMakeDepend.cxx index b40db88..c6e8587 100644 --- a/Source/cmMakeDepend.cxx +++ b/Source/cmMakeDepend.cxx @@ -80,7 +80,7 @@ void cmMakeDepend::SetMakefile(const cmMakefile* makefile) const cmDependInformation* cmMakeDepend::FindDependencies(const char* file) { - cmDependInformation* info = this->GetDependInformation(file,NULL); + cmDependInformation* info = this->GetDependInformation(file,0); this->GenerateDependInformation(info); return info; } @@ -280,7 +280,7 @@ void cmMakeDepend::GenerateMakefileDependencies() if(!(*i)->GetPropertyAsBool("HEADER_FILE_ONLY")) { cmDependInformation* info = - this->GetDependInformation((*i)->GetFullPath().c_str(),NULL); + this->GetDependInformation((*i)->GetFullPath().c_str(),0); this->AddFileToSearchPath(info->m_FullPath.c_str()); info->m_cmSourceFile = *i; this->GenerateDependInformation(info); |