]> git.ipfire.org Git - thirdparty/git.git/blobdiff - Documentation/CodingGuidelines
Merge branch 'gc/branch-recurse-submodules-fix'
[thirdparty/git.git] / Documentation / CodingGuidelines
index c37c43186ea80e2f11cd1b66c8ed5eaea1c904e3..1a7bc4591cd4b924e066eeecd9c89534d11f6eb5 100644 (file)
@@ -217,6 +217,9 @@ For C programs:
    . since mid 2017 with 512f41cf, we have been using designated
      initializers for array (e.g. "int array[10] = { [5] = 2 }").
 
+   . since early 2021 with 765dc168882, we have been using variadic
+     macros, mostly for printf-like trace and debug macros.
+
    These used to be forbidden, but we have not heard any breakage
    report, and they are assumed to be safe.