diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-06-22 15:32:27 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-06-22 15:32:27 (GMT) |
commit | 24ec7f5c3cb52d7cfead429e88b5d063c1c9933c (patch) | |
tree | d527ebd5720caab4cba1f31e5189df78c4b39f50 /Source/cmMakefile.cxx | |
parent | 1203dca687347deb1a7bb4b360e9b50d7d576943 (diff) | |
download | CMake-24ec7f5c3cb52d7cfead429e88b5d063c1c9933c.zip CMake-24ec7f5c3cb52d7cfead429e88b5d063c1c9933c.tar.gz CMake-24ec7f5c3cb52d7cfead429e88b5d063c1c9933c.tar.bz2 |
removed stricmp
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 210007b..b6d4c4f 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -418,7 +418,7 @@ struct FindSrcByName : std::binary_function<cmSourceFile, cmSourceFile, bool> public: bool operator () (const cmSourceFile &f, const cmSourceFile &test) const { - return !stricmp(f.GetSourceName().c_str(),test.GetSourceName().c_str()); + return !strcmp(f.GetSourceName().c_str(),test.GetSourceName().c_str()); } }; |