We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10f0d81 commit 70d7164Copy full SHA for 70d7164
masm_shc/main.cpp
@@ -97,11 +97,13 @@ bool process_file(t_params ¶ms)
97
{
98
std::ifstream file(params.infile);
99
if (!file.is_open()) {
100
+ std::cerr << "[ERROR] Opening the input file failed!\n";
101
return false;
102
}
103
104
std::ofstream ofile(params.outfile);
105
if (!ofile.is_open()) {
106
+ std::cerr << "[ERROR] Opening the output file failed!\n";
107
108
109
std::map<std::string, std::string> consts_lines;
0 commit comments