diff options
author | Clemens Wasser <clemens.wasser@gmail.com> | 2022-01-25 20:27:27 (GMT) |
---|---|---|
committer | Clemens Wasser <clemens.wasser@gmail.com> | 2022-01-26 16:09:21 (GMT) |
commit | bbdb000c55f82dc12f87a43f68defdfc246c6e51 (patch) | |
tree | 3b63fe5688b7a544d3ac55ead5c2ab257432abd7 /Source/cmGlobalNinjaGenerator.h | |
parent | 850bdc4203f4599fceaed2ae9ba21c53e71fd0fb (diff) | |
download | CMake-bbdb000c55f82dc12f87a43f68defdfc246c6e51.zip CMake-bbdb000c55f82dc12f87a43f68defdfc246c6e51.tar.gz CMake-bbdb000c55f82dc12f87a43f68defdfc246c6e51.tar.bz2 |
GlobalNinjaGenerator: enlarge file stream buffer
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 84fc06c..98442bf 100644 --- a/Source/cmGlobalNinjaGenerator.h +++ b/Source/cmGlobalNinjaGenerator.h @@ -526,6 +526,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; |