mirror of
https://github.com/jarun/nnn.git
synced 2025-01-15 13:26:37 +00:00
make clang-tidy happy
This commit is contained in:
parent
3b09fd1c75
commit
c3a42f0d92
|
@ -184,6 +184,7 @@ main(void)
|
|||
#define TOUPPER(ch) (((ch) >= 'a' && (ch) <= 'z') ? ((ch) - 'a' + 'A') : (ch))
|
||||
#endif
|
||||
|
||||
#if defined(ICONS_GENERATE) || defined(ICONS_ENABLED)
|
||||
static uint16_t
|
||||
icon_ext_hash(const char *str)
|
||||
{
|
||||
|
@ -199,3 +200,4 @@ icon_ext_hash(const char *str)
|
|||
ASSERT(hash < ARRLEN(table));
|
||||
return hash;
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
#ifndef INCLUDE_ICONS_H
|
||||
#define INCLUDE_ICONS_H
|
||||
|
||||
#if defined(ICONS_GENERATE) || defined(ICONS_ENABLED)
|
||||
|
||||
/*
|
||||
* 1st arg = ICONS_IN_TERM
|
||||
*
|
||||
|
@ -150,7 +152,7 @@
|
|||
COLOR_X(COLOR_VIM, 28) /* Green4 */ \
|
||||
|
||||
/* X-Macro: https://en.wikipedia.org/wiki/X_Macro */
|
||||
#define COLOR_X(N, V) N = V,
|
||||
#define COLOR_X(N, V) N = (V),
|
||||
enum { COLOR_LIST };
|
||||
#undef COLOR_X
|
||||
#define COLOR_X(N, V) N,
|
||||
|
@ -413,4 +415,6 @@ static const struct icon_pair icons_ext[] = {
|
|||
};
|
||||
#endif
|
||||
|
||||
#endif /* defined(ICONS_GENERATE) || defined(ICONS_ENABLED) */
|
||||
|
||||
#endif /* INCLUDE_ICONS_H */
|
||||
|
|
Loading…
Reference in a new issue