output filename reading when -v is given

This commit is contained in:
David Rose 2001-12-11 01:26:02 +00:00
parent 6671007fd2
commit f5bfcc42b9

View File

@ -1365,6 +1365,10 @@ handle_include_directive(const string &args, int first_line,
if (!push_file(CPPFile(filename, filename_as_referenced, source))) {
warning("Unable to read " + filename.get_fullpath(),
first_line, first_col, first_file);
} else {
if (_verbose >= 2) {
cerr << "Reading " << filename << "\n";
}
}
}
} else {