diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-01-31 18:50:42 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-01-31 18:50:42 (GMT) |
commit | f58d7df66a4cbfd171ae27eb0beaf12cf5355c08 (patch) | |
tree | ef63fcade1fda3aab970cc0566a66fa085edc1a2 /Source/cmSourceFile.cxx | |
parent | 5e661c66393328896f7a24f50b9f84fe8dd5f029 (diff) | |
download | CMake-f58d7df66a4cbfd171ae27eb0beaf12cf5355c08.zip CMake-f58d7df66a4cbfd171ae27eb0beaf12cf5355c08.tar.gz CMake-f58d7df66a4cbfd171ae27eb0beaf12cf5355c08.tar.bz2 |
ENH: add checking for NOTFOUND
Diffstat (limited to 'Source/cmSourceFile.cxx')
-rw-r--r-- | Source/cmSourceFile.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmSourceFile.cxx b/Source/cmSourceFile.cxx index fa220e7..abc623d 100644 --- a/Source/cmSourceFile.cxx +++ b/Source/cmSourceFile.cxx @@ -163,8 +163,8 @@ void cmSourceFile::SetProperty(const char* prop, const char* value) } if (!value) { - value = "NOTFOUND"; - } + value = "NOTFOUND"; + } m_Properties[prop] = value; } |