So I've been trying to sort a string based on the frequency of its characters.   However the online judge I've been using shows me the error
Line 17: invalid use of non-static member function 'bool olution::helper(char, char)'
Why is the call to my function wrong? I have used the sort() function before, but not to strings. Is my helper() function incorrect?  
class Solution {
public:
unordered_map<char,int> freq;
bool helper(char c1,char c2){
    if(freq[c1]>freq[c2]) return false;
    else return true;
}
string frequencySort(string s) {
    for(char c:s)
    {
        freq[c]++;
    }
    sort(s.begin(),s.end(),helper);
    return s;
}
};
 
     
     
     
    