Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
- Remove newline
  • Loading branch information
KevinEady committed Apr 19, 2021
1 parent b7f4433 commit 5e7c914
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -233,7 +233,7 @@ std::optional<std::string> SourceFileProcessor::locate_include_file(
// This is fatal because if we keep going, we'll likely report a bunch of errors
// that would just be noise, like missing functions or constants.
// But in diagnostics mode, we want to continue, so...
report.error( source_location, "Unable to read include file '" + include_name + "'\n" );
report.error( source_location, "Unable to read include file '" + include_name + "'" );
return {};
}
}
Expand Down

0 comments on commit 5e7c914

Please sign in to comment.