refactor: use bool to represent boolean values

This commit is contained in:
dundargoc
2023-12-16 22:14:28 +01:00
committed by dundargoc
parent 693aea0e9e
commit 7f6b775b45
49 changed files with 175 additions and 186 deletions

View File

@@ -1900,7 +1900,7 @@ int vim_vsnprintf_typval(char *str, size_t str_m, const char *fmt, va_list ap_st
case 'G': {
// floating point
char format[40];
int remove_trailing_zeroes = false;
bool remove_trailing_zeroes = false;
double f = (tvs
? tv_float(tvs, &arg_idx)