diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-10-21 16:26:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-21 16:26:54 +0200 |
commit | fa6556515f1d3b1e51ba9e2c84f0b575d69eef44 (patch) | |
tree | 91d74115f420dcf9313c6fa62e6f6dcd630aa7e2 /src/nvim/eval | |
parent | 784e498c4a9c1f03266ced5ec3f55c3a6c94b80d (diff) | |
parent | a11e96edfc2dec57be5773b6ce64a1323ce8431d (diff) | |
download | rneovim-fa6556515f1d3b1e51ba9e2c84f0b575d69eef44.tar.gz rneovim-fa6556515f1d3b1e51ba9e2c84f0b575d69eef44.tar.bz2 rneovim-fa6556515f1d3b1e51ba9e2c84f0b575d69eef44.zip |
Merge pull request #20664 from dundargoc/refactor/uncrustify
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 |