winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 2305b50b58d5c3fe021e79c0f10254de88e4ac28
parent bff9b9b11880fd7763c00bb28aaf7e9564677c90
Author: KEINOS <github+fork-qiita-news@keinos.com>
Date:   Fri, 11 Jul 2025 18:39:14 +0000

Merge remote-tracking branch 'upstream/master'

Diffstat:
Msrc/AppInstallerCLICore/CompletionData.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/AppInstallerCLICore/CompletionData.cpp b/src/AppInstallerCLICore/CompletionData.cpp @@ -59,7 +59,7 @@ namespace AppInstaller::CLI // very few users are likely to put any spaces at the front of their statements, let alone many. else { - for (; cursor > 0 && !std::isspace(commandLine[cursor - 1]); --cursor); + for (; cursor > 0 && !std::isspace(static_cast<unsigned char>(commandLine[cursor - 1])); --cursor); AICLI_LOG(CLI, Info, << "Cursor position moved to '" << cursor << '\'');