diff options
author | Brad King <brad.king@kitware.com> | 2022-01-27 16:11:06 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2022-01-27 16:11:59 (GMT) |
commit | f4893ac0b15b939859a599fca8fb0beca814ba93 (patch) | |
tree | 39cdd4cca0f2aa6a6744c2ed8f4cfa29c208ba9f /Source/cmGlobalNinjaGenerator.h | |
parent | b41b841cc6370a548bf193711a9b37e24b509605 (diff) | |
parent | bbdb000c55f82dc12f87a43f68defdfc246c6e51 (diff) | |
download | CMake-f4893ac0b15b939859a599fca8fb0beca814ba93.zip CMake-f4893ac0b15b939859a599fca8fb0beca814ba93.tar.gz CMake-f4893ac0b15b939859a599fca8fb0beca814ba93.tar.bz2 |
Merge topic 'enlarge-build-file-stream-buffer'
bbdb000c55 GlobalNinjaGenerator: enlarge file stream buffer
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !6903
Diffstat (limited to 'Source/cmGlobalNinjaGenerator.h')
-rw-r--r-- | Source/cmGlobalNinjaGenerator.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGlobalNinjaGenerator.h b/Source/cmGlobalNinjaGenerator.h index 03387a8..aa2df4d 100644 --- a/Source/cmGlobalNinjaGenerator.h +++ b/Source/cmGlobalNinjaGenerator.h @@ -529,6 +529,7 @@ 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; |