Don't ask to run as administrator in filefuncs.cpp.

This commit is contained in:
Username404-59 2021-03-30 18:29:40 +02:00
parent ee6817c0e9
commit b37250492a
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ string getFileContent(const string& file)
if (filetoParse.is_open()) while (getline(filetoParse, lineinput)) {
fullinput.append(lineinput + "\n");
} else {
cout << "Could not open the file(s), please run as administrator." << endl;
cout << "Could not open the file(s)." << endl;
exit(EXIT_FAILURE);
}
filetoParse.close();