fuzz: Clang-format LIMITED_WHILE like while
What changed, and why it matters
This commit only changes a code-formatting configuration file. It tells the project's automatic formatting tool (clang-format) to treat the custom LIMITED_WHILE macro the same way it treats a normal 'while' loop when laying out code. There is no change to program logic, no bug fix, and no security relevance.
No security action needed. This is a formatting-only change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff adds LIMITED_WHILE to the IfMacros list in src/.clang-format. This is a pure style/formatting configuration change that affects how clang-format indents code using the LIMITED_WHILE macro. It does not modify compiled code, runtime behavior, or any security-sensitive logic.
Changed components
src/.clang-formatInspect captured patch +1 / −0
diff --git a/src/.clang-format b/src/.clang-format
index 72a20228..7097595a 100644
--- a/src/.clang-format
+++ b/src/.clang-format
@@ -97,6 +97,7 @@ ForEachMacros:
- BOOST_FOREACH
IfMacros:
- KJ_IF_MAYBE
+ - LIMITED_WHILE
IncludeBlocks: Regroup
IncludeCategories:
- Regex: '^<bitcoin-build-config\.h>'
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.