mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 13:53:10 +00:00
[clang-tidy] Remove redundant const in function declarations
Found with readability-avoid-const-params-in-decls
This commit is contained in:
parent
856fa0ca42
commit
49fbca8a8b
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ static owning_lock<struct winsize> s_termsize{k_invalid_termsize};
|
|||
static relaxed_atomic_bool_t s_termsize_valid{false};
|
||||
|
||||
static char *wcs2str_internal(const wchar_t *in, char *out);
|
||||
static void debug_shared(const wchar_t msg_level, const wcstring &msg);
|
||||
static void debug_shared(wchar_t msg_level, const wcstring &msg);
|
||||
|
||||
#if defined(OS_IS_CYGWIN) || defined(WSL)
|
||||
// MS Windows tty devices do not currently have either a read or write timestamp. Those
|
||||
|
|
Loading…
Reference in a new issue