diff options
author | Brad King <brad.king@kitware.com> | 2002-11-08 23:05:22 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-11-08 23:05:22 (GMT) |
commit | 06b640fe48acd739fde767f75fb19b5353c69e4b (patch) | |
tree | e9a018f8fe5f4b2b6a0a1614d7dd893b09fb7eda | |
parent | a747e47cb00e8be912b8d4c3e98905bd89ed0a26 (diff) | |
download | CMake-06b640fe48acd739fde767f75fb19b5353c69e4b.zip CMake-06b640fe48acd739fde767f75fb19b5353c69e4b.tar.gz CMake-06b640fe48acd739fde767f75fb19b5353c69e4b.tar.bz2 |
ERR: Removed use of NULL.
-rw-r--r-- | Source/cmGlobalCodeWarriorGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalCodeWarriorGenerator.cxx b/Source/cmGlobalCodeWarriorGenerator.cxx index 8f8d0a0..828199d 100644 --- a/Source/cmGlobalCodeWarriorGenerator.cxx +++ b/Source/cmGlobalCodeWarriorGenerator.cxx @@ -35,7 +35,7 @@ void cmGlobalCodeWarriorGenerator::EnableLanguage(const char*, std::string fpath = mf->GetDefinition("CMAKE_ROOT"); fpath += "/Templates/CMakeDotNetSystemConfig.cmake"; - mf->ReadListFile(NULL,fpath.c_str()); + mf->ReadListFile(0,fpath.c_str()); this->SetLanguageEnabled("CXX"); } } |