diff --git a/src/ccache/ccache.cpp b/src/ccache/ccache.cpp index 38ef7a26ff..6baf8bdd7d 100644 --- a/src/ccache/ccache.cpp +++ b/src/ccache/ccache.cpp @@ -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; }