Skip to content

Commit

Permalink
chore: Clean up comment and debug log string
Browse files Browse the repository at this point in the history
  • Loading branch information
jrosdahl committed May 4, 2024
1 parent 660fa5f commit 3914891
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/ccache/ccache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -574,13 +574,11 @@ process_preprocessed_file(Context& ctx, Hash& hash, const std::string& path)
&& ((q[7] == ' '
&& (q[8] == '"' || (q[8] == '\\' && q[9] == '"')))
|| q[7] == '"')) {
// Instead of bailing we ignore changes as sloppy incbin handling is
// enabled
if (ctx.config.sloppiness().contains(core::Sloppy::incbin)) {
LOG_RAW(
"Found potential unsupported .inc"
"bin directive in source code "
"but continuing due to enabled sloppy incbin handling");
"bin directive in source code but continuing due to enabled sloppy"
" incbin handling");
q += sizeof(incbin_directive);
continue;
}
Expand Down

0 comments on commit 3914891

Please sign in to comment.