Don't ask to run as administrator in filefuncs.cpp.
This commit is contained in:
parent
ee6817c0e9
commit
b37250492a
|
@ -10,7 +10,7 @@ string getFileContent(const string& file)
|
||||||
if (filetoParse.is_open()) while (getline(filetoParse, lineinput)) {
|
if (filetoParse.is_open()) while (getline(filetoParse, lineinput)) {
|
||||||
fullinput.append(lineinput + "\n");
|
fullinput.append(lineinput + "\n");
|
||||||
} else {
|
} else {
|
||||||
cout << "Could not open the file(s), please run as administrator." << endl;
|
cout << "Could not open the file(s)." << endl;
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
filetoParse.close();
|
filetoParse.close();
|
||||||
|
|
Loading…
Reference in New Issue