Fix indentation in a part of the getFileContent() function from filefuncs.cpp.

This commit is contained in:
Username404-59 2021-02-19 16:00:30 +01:00
parent f0e82fcc0b
commit 66dcac958c
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1

View File

@ -10,8 +10,8 @@ string getFileContent(const string& file)
string lineinput, fullinput; string lineinput, fullinput;
filetoParse.open(file, ios::in); filetoParse.open(file, ios::in);
if (filetoParse.is_open()) while (getline(filetoParse, lineinput)) { if (filetoParse.is_open()) while (getline(filetoParse, lineinput)) {
fullinput.append(lineinput + "\n"); fullinput.append(lineinput + "\n");
} }
filetoParse.close(); filetoParse.close();
return fullinput; return fullinput;
} }