mirror of
https://github.com/neovim/neovim.git
synced 2025-10-02 16:08:36 +00:00
refactor: format with uncrustify #15741
This commit is contained in:
@@ -8,20 +8,18 @@
|
||||
// khash.h does not make its own copy of the key or value.
|
||||
//
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <lauxlib.h>
|
||||
#include <lua.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <lua.h>
|
||||
#include <lauxlib.h>
|
||||
|
||||
#include "nvim/api/private/dispatch.h"
|
||||
#include "nvim/lib/khash.h"
|
||||
#include "nvim/map.h"
|
||||
#include "nvim/map_defs.h"
|
||||
#include "nvim/vim.h"
|
||||
#include "nvim/memory.h"
|
||||
#include "nvim/api/private/dispatch.h"
|
||||
|
||||
#include "nvim/lib/khash.h"
|
||||
#include "nvim/vim.h"
|
||||
|
||||
#define cstr_t_hash kh_str_hash_func
|
||||
#define cstr_t_eq kh_str_hash_equal
|
||||
@@ -52,7 +50,7 @@
|
||||
|
||||
#define MAP_IMPL(T, U, ...) \
|
||||
INITIALIZER_DECLARE(T, U, __VA_ARGS__); \
|
||||
__KHASH_IMPL(T##_##U##_map,, T, U, 1, T##_hash, T##_eq) \
|
||||
__KHASH_IMPL(T##_##U##_map, , T, U, 1, T##_hash, T##_eq) \
|
||||
\
|
||||
void map_##T##_##U##_destroy(Map(T, U) *map) \
|
||||
{ \
|
||||
|
Reference in New Issue
Block a user