diff options
author | Brad King <brad.king@kitware.com> | 2022-10-26 18:35:42 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-10-26 19:24:43 (GMT) |
commit | 02a04dd9c7d760d1977e72a59e52da4e15000e0c (patch) | |
tree | ecffe32c0f5d4f499a7b6d281434013d406a07eb /Source/cmGlobalNinjaGenerator.h | |
parent | 4f2bb02d9a85e1002afb49b91e3568674715b4e3 (diff) | |
download | CMake-02a04dd9c7d760d1977e72a59e52da4e15000e0c.zip CMake-02a04dd9c7d760d1977e72a59e52da4e15000e0c.tar.gz CMake-02a04dd9c7d760d1977e72a59e52da4e15000e0c.tar.bz2 |
Ninja: Restore support for non-ascii paths on Windows with ninja<=1.10
Revert commit bbdb000c55 (GlobalNinjaGenerator: enlarge file stream
buffer, 2022-01-25, v3.23.0-rc1~68^2). Somehow `rdbuf()->pubsetbuf()`
is resetting our imbued locale and `cm_codecvt` that handles encoding.
Fixes: #24089
Diffstat (limited to 'Source/cmGlobalNinjaGenerator.h')
-rw-r--r-- | Source/cmGlobalNinjaGenerator.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/cmGlobalNinjaGenerator.h b/Source/cmGlobalNinjaGenerator.h index aa2df4d..03387a8 100644 --- a/Source/cmGlobalNinjaGenerator.h +++ b/Source/cmGlobalNinjaGenerator.h @@ -529,7 +529,6 @@ private: /// The file containing the build statement. (the relationship of the /// compilation DAG). std::unique_ptr<cmGeneratedFileStream> BuildFileStream; - std::unique_ptr<char[]> BuildFileStreamBuffer; /// The file containing the rule statements. (The action attached to each /// edge of the compilation DAG). std::unique_ptr<cmGeneratedFileStream> RulesFileStream; |