Компилятор показывает эту ошибку:
error: invalid operands to binary expression ('basic_ostream<char, std::__1::char_traits<char> >' and 'void')
Что я делаю не так?
#include <iostream>
#include <string>
using namespace std;
void remove(string x, string y)
{
while (x.find_first_of(y) != -1)
{
x.erase(x.find_first_of(y), 1);
}
}
int main()
{
string a, b;
cout << "Enter word: ";
cin >> a;
cout << "Sign: ";
cin >> b;
cout << "Result: " << remove(a, b) << endl;
return 0;
}