removed stricmp
This commit is contained in:
parent
1203dca687
commit
24ec7f5c3c
@ -418,7 +418,7 @@ struct FindSrcByName : std::binary_function<cmSourceFile, cmSourceFile, bool>
|
|||||||
public:
|
public:
|
||||||
bool operator () (const cmSourceFile &f, const cmSourceFile &test) const
|
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());
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user