diff options
author | Cebtenzzre <cebtenzzre@gmail.com> | 2023-09-01 09:34:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-01 16:34:50 +0300 |
commit | ef156499721c67748cde01a5436cb6f0648bb4b4 (patch) | |
tree | f979837d94e3deab68d38b08ce70441123c888c8 /common/console.cpp | |
parent | d8d6977f48f1fa402ade38ad32c5b5fb1358d059 (diff) |
build : fix most gcc and clang warnings (#2861)
* fix most gcc and clang warnings
* baby-llama : remove commented opt_params_adam
* fix some MinGW warnings
* fix more MinGW warnings
Diffstat (limited to 'common/console.cpp')
-rw-r--r-- | common/console.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/console.cpp b/common/console.cpp index 8efa2a67..23545e5b 100644 --- a/common/console.cpp +++ b/common/console.cpp @@ -235,6 +235,7 @@ namespace console { int estimateWidth(char32_t codepoint) { #if defined(_WIN32) + (void)codepoint; return 1; #else return wcwidth(codepoint); |