]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Re-add clang-format off/on for formatting bug
authorJoel Rosdahl <joel@rosdahl.net>
Sun, 9 May 2021 18:39:15 +0000 (20:39 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Sun, 9 May 2021 18:39:45 +0000 (20:39 +0200)
src/CacheEntryWriter.cpp

index 6c128e5472ad53f8f6aa6a0bf4a81d870bd490e7..b9369476731b9344700434edab04f836e0e9ebf8 100644 (file)
@@ -24,8 +24,10 @@ CacheEntryWriter::CacheEntryWriter(FILE* stream,
                                    Compression::Type compression_type,
                                    int8_t compression_level,
                                    uint64_t payload_size)
+  // clang-format off
   : m_compressor(
-    Compressor::create_from_type(compression_type, stream, compression_level))
+      Compressor::create_from_type(compression_type, stream, compression_level))
+// clang-format on
 {
   uint8_t header_bytes[15];
   memcpy(header_bytes, magic, 4);