0

我只是从 SourceForge 下载 Astyle。当我在/bin中执行Astyle.exe时,它说Cannot convert to multi-byte string,reverting to English。

我不知道发生了什么。

我发现有一个类似的问题,但那是关于 OS X 中的 Astyle。

这是与错误相关的源代码。我不知道第二行的意思。

// Not all compilers support the C++ function locale::global(locale(""));
// For testing on Windows change the "Region and Language" settings or use AppLocale.
// For testing on Linux change the LANG environment variable: LANG=fr_FR.UTF-8.
// setlocale() will use the LANG environment variable on Linux.

char* localeName = setlocale(LC_ALL, "");
if (localeName == NULL)     // use the english (ascii) defaults
{
    fprintf(stderr, "\n%s\n\n", "Cannot set native locale, reverting to English");
    setTranslationClass();
    return;
}

最后,请随时纠正我的英语。

4

1 回答 1

0

将以下包含添加到ASLocalizer.cppstyle_main.cpp

<#include "locale.h">

于 2015-09-13T20:49:49.463 回答