Trying to use getline but the error keeps saying: No instance of overloaded function matches argument list.
 #include <iomanip>
 #include <string>
 #include <iostream>
 #include <fstream>
 #include <iomanip>
using namespace std;
int main()
{
    int lengthInput;
    int widthInput;
    ifstream fileOpening;
    fileOpening.open("testFile.txt");
while (!fileOpening.eof())
    {
//ERROR ON NEXT TWO LINES OF CODE**
        getline(fileOpening, lengthInput, ' ');
        getline(fileOpening, widthInput, ' ');
    }
    system("pause");
    return 0;
 
     
     
    