]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
chore: Clean up comment and debug log string
authorJoel Rosdahl <joel@rosdahl.net>
Sat, 4 May 2024 19:03:00 +0000 (21:03 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Sat, 4 May 2024 19:03:00 +0000 (21:03 +0200)
src/ccache/ccache.cpp

index 38ef7a26ffa779239f961aa6cea376baa05e9a3b..6baf8bdd7dcc5c92dcb218d205cbf2a317e82fc8 100644 (file)
@@ -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;
       }