dtoolutil: Use string compare instead of strcmp in filename.I

This commit is contained in:
rdb 2024-08-08 21:36:00 +02:00
parent 23124dac07
commit abf0b38705
1 changed files with 1 additions and 1 deletions

View File

@ -594,7 +594,7 @@ operator < (const std::string &other) const {
*/
INLINE int Filename::
compare_to(const Filename &other) const {
return strcmp(_filename.c_str(), other._filename.c_str());
return _filename.compare(other._filename);
}