Skip to content

Commit

Permalink
Merge pull request s3fs-fuse#4 from pdeschen/patch-1
Browse files Browse the repository at this point in the history
Fix compilation error on MacOSX with missing const
  • Loading branch information
rrizun committed Jan 5, 2014
2 parents 26187b9 + db3bd7c commit 654c58c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/curl.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
};
Expand Down

0 comments on commit 654c58c

Please sign in to comment.