]> git.saurik.com Git - apple/xnu.git/blobdiff - .clang-format
xnu-6153.121.1.tar.gz
[apple/xnu.git] / .clang-format
index 566d0efa8f6562255df66284471b18193a1c8194..3a0a27166b9414aacf6a7a9272c543224dcd9519 100644 (file)
@@ -105,9 +105,10 @@ SpaceBeforeAssignmentOperators: true
 # Assignment = should be seperated by spaces on both sides.
 
 SpaceBeforeParens: ControlStatements
-# for control statements a space is required before '{'
-# Bad: for(){ statement; }
-# Good: for() { statement; }
+# for control statements a space is required before '('
+# Bad: for() { statement; }
+# Good: for () { statement; }
+# This setting distinguishes functions() from keywords like 'if' and 'for'.
 
 SpaceInEmptyParentheses: false
 # No spaces required for empty ()