We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 344fd19 commit 77b6cf6Copy full SHA for 77b6cf6
.clang-format
@@ -13,7 +13,7 @@ UseTab: Never
13
IndentWidth: 4
14
BreakBeforeBraces: Linux
15
AccessModifierOffset: -4
16
-ForEachMacros:
+ForEachMacros:
17
- foreach
18
- Q_FOREACH
19
- BOOST_FOREACH
@@ -24,4 +24,4 @@ ForEachMacros:
24
- hlist_for_each_entry
25
- rb_list_foreach
26
- rb_list_foreach_safe
27
- - vec_foreach
+SpaceBeforeParens: ControlStatementsExceptForEachMacros
zobrist.c
@@ -53,7 +53,7 @@ zobrist_entry_t *zobrist_get(u64 key)
53
54
zobrist_entry_t *entry = NULL;
55
56
- hlist_for_each_entry (entry, &hash_table[hash_key], ht_list) {
+ hlist_for_each_entry(entry, &hash_table[hash_key], ht_list) {
57
if (entry->key == key)
58
return entry;
59
}
0 commit comments