mirror of
https://github.com/neovim/neovim.git
synced 2025-10-07 02:16:31 +00:00
refactor: uncrustify
Notable changes: replace all infinite loops to `while(true)` and remove `int` from `unsigned int`.
This commit is contained in:
@@ -127,7 +127,7 @@ static inline int marktree_getp_aux(const mtnode_t *x, mtkey_t k, int *r)
|
||||
if (x->n == 0) {
|
||||
return -1;
|
||||
}
|
||||
rr = r? r : &tr;
|
||||
rr = r ? r : &tr;
|
||||
while (begin < end) {
|
||||
int mid = (begin + end) >> 1;
|
||||
if (key_cmp(x->key[mid], k) < 0) {
|
||||
|
Reference in New Issue
Block a user