diff options
author | dundargoc <gocdundar@gmail.com> | 2022-10-14 17:04:28 +0200 |
---|---|---|
committer | dundargoc <gocdundar@gmail.com> | 2022-10-21 16:23:32 +0200 |
commit | 6ff245732a5a8ab821598a38fb0c5805e6bd3779 (patch) | |
tree | 93b795042ae973ccab7301c0dde68ce9fa07b122 /src/nvim/eval | |
parent | b967cb2e03d32e7e525592049ca7f4f92413188c (diff) | |
download | rneovim-6ff245732a5a8ab821598a38fb0c5805e6bd3779.tar.gz rneovim-6ff245732a5a8ab821598a38fb0c5805e6bd3779.tar.bz2 rneovim-6ff245732a5a8ab821598a38fb0c5805e6bd3779.zip |
refactor(uncrustify): improved formatting rules
Diffstat (limited to 'src/nvim/eval')
-rw-r--r-- | src/nvim/eval/typval.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/nvim/eval/typval.h b/src/nvim/eval/typval.h index e4cd76e8a6..fcc933c967 100644 --- a/src/nvim/eval/typval.h +++ b/src/nvim/eval/typval.h @@ -43,10 +43,8 @@ static inline ListLog *list_log_new(const size_t size) return ret; } -static inline void list_log(const list_T *const l, - const listitem_T *const li1, - const listitem_T *const li2, - const char *const action) +static inline void list_log(const list_T *const l, const listitem_T *const li1, + const listitem_T *const li2, const char *const action) REAL_FATTR_ALWAYS_INLINE; /// Add new entry to log @@ -488,8 +486,7 @@ extern bool tv_in_free_unref_items; } \ }) -static inline bool tv_get_float_chk(const typval_T *tv, - float_T *ret_f) +static inline bool tv_get_float_chk(const typval_T *tv, float_T *ret_f) REAL_FATTR_NONNULL_ALL REAL_FATTR_WARN_UNUSED_RESULT; /// Get the float value |