mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2024-11-05 04:17:52 +00:00
Merge pull request #4 from pdeschen/patch-1
Fix compilation error on MacOSX with missing const
This commit is contained in:
commit
654c58c90a
@ -85,7 +85,7 @@ struct filepart
|
||||
// for progress
|
||||
struct case_insensitive_compare_func
|
||||
{
|
||||
bool operator()(const std::string& a, const std::string& b){
|
||||
bool operator()(const std::string& a, const std::string& b) const {
|
||||
return strcasecmp(a.c_str(), b.c_str()) < 0;
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user