mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 01:16:31 +00:00
shada: Fix linter errors
This commit is contained in:
@@ -62,7 +62,7 @@
|
|||||||
|
|
||||||
/// Define a ring buffer structure
|
/// Define a ring buffer structure
|
||||||
///
|
///
|
||||||
/// @param TypeName Ring buffer type name. Actual type name will be
|
/// @param TypeName Ring buffer type name. Actual type name will be
|
||||||
/// `{TypeName}RingBuffer`.
|
/// `{TypeName}RingBuffer`.
|
||||||
/// @param RBType Type of the single ring buffer element.
|
/// @param RBType Type of the single ring buffer element.
|
||||||
#define RINGBUF_TYPEDEF(TypeName, RBType) \
|
#define RINGBUF_TYPEDEF(TypeName, RBType) \
|
||||||
@@ -75,12 +75,12 @@ typedef struct { \
|
|||||||
|
|
||||||
/// Initialize a new ring buffer
|
/// Initialize a new ring buffer
|
||||||
///
|
///
|
||||||
/// @param TypeName Ring buffer type name. Actual type name will be
|
/// @param TypeName Ring buffer type name. Actual type name will be
|
||||||
/// `{TypeName}RingBuffer`.
|
/// `{TypeName}RingBuffer`.
|
||||||
/// @param funcprefix Prefix for all ring buffer functions. Function name will
|
/// @param funcprefix Prefix for all ring buffer functions. Function name will
|
||||||
/// look like `{funcprefix}_rb_{function_name}`.
|
/// look like `{funcprefix}_rb_{function_name}`.
|
||||||
/// @param RBType Type of the single ring buffer element.
|
/// @param RBType Type of the single ring buffer element.
|
||||||
/// @param rbfree Function used to free ring buffer element. May be
|
/// @param rbfree Function used to free ring buffer element. May be
|
||||||
/// a macros like `#define RBFREE(item)` (to skip freeing).
|
/// a macros like `#define RBFREE(item)` (to skip freeing).
|
||||||
///
|
///
|
||||||
/// Intended function signature: `void *rbfree(RBType *)`;
|
/// Intended function signature: `void *rbfree(RBType *)`;
|
||||||
|
1409
src/nvim/shada.c
1409
src/nvim/shada.c
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user