Also das ist der Code:Fehler bei std :: getline
#include <iostream>
#include <fstream>
#include <vector>
#include <string>
using namespace std;
void print_file(const ifstream& dat_in)
{
if(!dat_in.is_open())
throw ios_base::failure("file not open");
string buffer;
while(getline(dat_in, buffer)); //error here
}
int main()
{
ifstream dat_in("name_of_the_file.txt");
try{
print_file(dat_in);
}
catch(ios_base::failure exc){
cout << exc.what() << endl;
}
}
Und ich erhalte eine Fehlermeldung, dass keine Instanz überladene Funktion std::getline
die Argumentliste übereinstimmt. Ich habe diese Zeile Code tausend mal, was das Problem ist jetzt ...
3 IntelliSense: no instance of overloaded function "getline" matches the argument list argument types are: (const std::ifstream, std::string) Error 1 error C2665: 'std::getline' : none of the 2 overloads could convert all the argument types