From 861d367316b09bb44b053276cdd1b87691d6af5e Mon Sep 17 00:00:00 2001 From: Michael Hitchens Date: Wed, 20 May 2026 10:40:17 -0400 Subject: [PATCH] Document clang-format-16 in CONTRIBUTING Code must be formatted with clang-format-16. Document this in CONTRIBUTING. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d1c625f2d..6973084b9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -51,7 +51,7 @@ your changes: * Ensure the code follows the [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html). - Running `clang-format -style=file -i [modified-files]` can help. +* Format modified C++ files with clang-format-16: `clang-format-16 -style=file -i [modified-files]` * Code should target C++17 * Create a pull request (PR) with your patch. * 1 PR = 1 change. If you want to add 3 features, that's 3 PRs.