We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f632cdd commit be068a5Copy full SHA for be068a5
executable/setup/src/winmain.cpp
@@ -13,8 +13,6 @@
13
14
#include <Windows.h>
15
16
-#include <boost/algorithm/string.hpp>
17
-
18
#include <tetengo/text/encoder.hpp>
19
#include <tetengo/text/encoding/utf16.hpp>
20
@@ -61,7 +59,7 @@ namespace
61
59
{
62
60
const auto msi_path = base_directory / msi_file_name;
63
auto parameters = std::wstring{ L"/i \"" } + msi_path.native() + std::wstring{ L"\"" };
64
- if (boost::algorithm::starts_with(locale_name, "Japanese"))
+ if (locale_name.starts_with("Japanese"))
65
66
parameters += L" TRANSFORMS=\":ja.mst\"";
67
}
0 commit comments